Question

MuleStudio or its plugin for eclipse uses mule-config.xml file by default. Is there an option to override the file name?

Était-ce utile?

La solution

There are two options.

  1. Right click on the Mule Project and go to

    Run As --> Run COnfigurations

    Then Select Java Application. Then right click and select New Add your config file name as shown in the picture and run it. Configuration pic

  2. Create a mule-deploy.properties and keep it in the src/main/app folder. Add the configuration resource entry to it. This will be helpful when you package and deploy mule application onto a mule standalone server.

    config.resources=my-mule-config.xml

Refer to the following link for more detials on Mule in Eclipse.

Creating a Mule project in Eclipse

Hope this helps.

Autres conseils

you can rename the file by right clicking on it and select refactor or select the file and click F2 to rename it and then run the application as Mule run configurations.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top