如何在Tomcat 8中创建新的共享文件夹并从中加载我的属性文件

时间:2016-05-15 17:08:21

标签: java spring spring-mvc tomcat

我有一个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

但我还没有找到解决方案。

1 个答案:

答案 0 :(得分:0)

您可以在Spring MVC中使用PropertyPlaceholderConfigurer来外部化属性文件。

请在下面的帖子中详细解释:

PropertyPlaceholderConfigurer in Spring MVC

请参阅以下帖子,并以示例解释:

Spring application context external properties?