Ravi Hanok
Ravi Hanok

Reputation: 415

How to add resource files in in /src/main/resource after deploying mule application in mmc

I have just deployed for the first time a mule application in Mule management console(MMC),after deploying I want to add csv file in src/main/resourses/input folder. where can I find path and add csv file to that path.

Upvotes: 0

Views: 1753

Answers (3)

RamakrishnaN
RamakrishnaN

Reputation: 367

You can see the below image for details.

In other words,

Click on Servers tab --> Server --> Files tab --> apps --> Select your application --> classes --> Click on New File button --> Upload file.

enter image description here

But I suggest, keep your file in some other location and read it instead of keeping with in application folder structure.Problem is if you re-deploy the app from MMC, whatever files you have added manually from MMC will be deleted as MMC will take application from repository and deploy into server whenever you do re-deploy.

Upvotes: 2

tbriscoe
tbriscoe

Reputation: 160

{MULE_HOME}/apps/{my app}/classes/{input folder}

Any folders under src/main/resourses will reside under the classes folder found in your app folder, which is under the apps folder of the standalone Mule server.

Upvotes: 1

Alex Fernandez
Alex Fernandez

Reputation: 1942

You could look at this path

/opt/mule-standalone-3.7.0/apps/{appname}/classes

Upvotes: 0

Related Questions