One properties configuration file for Multi Apps on Mule ESB runtime -
today have same properties configurated on mule-app.properties file each apps. this:
all apps (+ 5) running on same mule esb runtime (ce).
for example, when necessary change host or password, need change properties file of apps.
i have 1 properties file on mule esb runtime shared apps.
is there form make this?
thanks!
you can create new mule project , call "shared". now, in project, can create file src/main/resources/config.properties
, there put settings need.
to have these settings in current project, add project "shared" in "projects" tab of "java build path". in main file of current project, write
< context: property-placeholder location="config.properties" />
Comments
Post a Comment