在web.xml文件内配置springMVC的DispatcherServlet的那个servlet内添加
<servlet> <servlet-name>mvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:mvc.xml</param-value> </init-param> </servlet>
后,即可把springMVC的配置文件放在src目录下。原来的配置文件名默认为[servlet name]-servlet.xml,配置过classpath:mvc.xml后,配置文件名为mvc.xml
时间: 2024-10-11 09:51:02