在呈现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中找到