best place to put properties file in IBM websphere 8.5?

后端 未结 6 733
说谎
说谎 2020-12-31 16:06

In our existing application properties file is embedded in a jar file ,we decided to move properties file outside of ear(application) , what is the best place to put propert

6条回答
  •  庸人自扰
    2020-12-31 16:26

    You can use the classloader directories for that. I would use the directory classes (you might need to create) under $WEBSPHERE_HOME/AppServer/classes and drop your properties there. You should than be able to find them from any of your applications / servers.

    Check the Class loaders page.

提交回复
热议问题