0

I'm setting up different projects on the same server and want to put the same properties on some path outside the tomcat folder and load project properties as well how can I achieve it so that load both project properties and properties on path.

1 Answers1

0

You have asked 2 questions:

  • To put properties outside the project you have to create a custom class file that is extending the Resource bundle. For further details see this: Loading resources outside project
  • To load both properties you can load both with different var like:

    <!-- loading properties outside the project --> <resource-bundle> <base-name>com.yourpackage.CustomResourceBundle</base-name> <var>msgCustom</var> </resource-bundle> <!-- loading properties inside the project --> <resource-bundle> <base-name>com.yourpackage.resources.view</base-name> <var>msg</var> </resource-bundle>

Ammar Ali
  • 692
  • 6
  • 20