我有一个Spring MVC
网络应用程序。我现在正在尝试外部化所有属性以使其独立于war文件。我正在尝试从application.properties
文件加载一些属性。另外我想加载我的数据库凭据也是这样的。我有什么方法可以做到这一点吗?
我在root-contxt.xml
文件中
我尝试了以下内容: Adding a property file in the shared folder in tomcat 8 and using it in a Spring MVC web application
但我还没有找到解决方案。
答案 0 :(得分:0)
您可以在Spring MVC中使用PropertyPlaceholderConfigurer来外部化属性文件。
请在下面的帖子中详细解释:
PropertyPlaceholderConfigurer in Spring MVC
请参阅以下帖子,并以示例解释: