java – 如何在我的Web应用程序之外移动spring xml配置?

前端之家收集整理的这篇文章主要介绍了java – 如何在我的Web应用程序之外移动spring xml配置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何在我的java Web应用程序之外移动spring xml配置?

我想将spring.xml存储在我的Web应用程序之外,因此我不必创建我的应用程序的新版本来更改配置.

做这个的最好方式是什么?

最佳答案
正如Rod Johnson在this thread中解释的那样:

You can use the classpath: prefix to load from the classpath,with the normal Spring listener or startup servlet. This is made possible by Spring’s Resource abstraction. You can freely mix and match resources from WEB-INF and classpath.

因此,将配置文件放在webapp外部的类路径中的某个位置,并在web.xml中声明以下内容

我认为依赖类路径比使用绝对文件路径更便携.

原文链接:https://www.f2er.com/spring/432725.html

猜你在找的Spring相关文章