如何更改 ContextLoaderListener 的应用程序上下文路径
在我的应用程序中,默认情况下 org.springframework.web.context.ContextLoaderListener 在 WEB-INF 文件夹中查找 Applicationcontext.xml 。现在我想将 Applicationcontext.xml 文件移动到 src/main/resources 文件夹。但如果我这样做,我会收到错误 java.io.FileNotFoundException:无法打开 ServletContext 资源 [/WEB-INF/applicationContext.xml]。
如何指定 ContextLoaderListener 在资源文件夹中查找文件?请帮忙
In my application by default org.springframework.web.context.ContextLoaderListener looks for Applicationcontext.xml in WEB-INF folder. Now i want to move Applicationcontext.xml file to src/main/resources folder. But if i do this i get error java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/applicationContext.xml].
How do i specify ContextLoaderListener to look for file in resources folder? please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将其添加到 Maven 资源文件夹,只需将:添加
到您的 web.xml 中。
If you added it to Mavens resources folder simply add:
to your web.xml.