java – spring配置文件和web.xml的确切位置在哪里?

前端之家收集整理的这篇文章主要介绍了java – spring配置文件和web.xml的确切位置在哪里?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在呈现WEB-CONTENT / WEB-INF / jsp / index.jsp中的index.jsp时获取DispatcherServlet的类未找到异常

以下是项目的结构.

> web.xml位于WEB-CONTENT下.
> abc是我的Dispatcher servlet的名称.所以配置文件将是abc-servlet.xml,它将包含所有的bean标签
命名空间和模式定义.
>我应该在哪里放置abc-servlet.xml文件?它应该在classes文件夹中还是在web.xml中?
>是否因为spring配置文件的位置而产生异常?
>此外,如果我将配置文件放在其他位置,如何让项目知道它在项目中的特定路径?

我在smaple项目中使用注释驱动的控制器.

最佳答案
从文档:

Upon initialization of a DispatcherServlet,Spring MVC looks for a
file named [servlet-name]-servlet.xml in the WEB-INF directory of your
web application and creates the beans defined there,overriding the
definitions of any beans defined with the same name in the global
scope.

因此,将abc-servlet.xml放在WEB-INF中应该允许调度程序servlet接收您的配置.

如果您不希望调度程序servlet使用默认名称或希望它驻留在WEB-INF之外的另一个目录中,则可以在web.xml中指定此配置.可以通过在DispatcherServlet中设置contextConfigLocation init-param来更改调度程序servlet配置的位置和名称

此信息可在Spring Documentation中找到

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

猜你在找的Spring相关文章