使用 SpringSource Tool Suite 2.9.2,我创建了一个项目
新建 > Spring 模板项目 > Spring MVC 项目
这会生成一个简单的控制器 pom.xml、servlet-context.xml、root-context.xml 和一个简单的 jsp 文件供控制器映射到。
然而,当我运行该项目时,组件扫描并未拾取控制器,尽管/resources/**
路径已映射到servlet-context.xml
. 应该给我 Hello World 的页面给了我一个 404。
我究竟做错了什么?
中的相关位servlet-context.xml
:
<context:component-scan base-package="com.test.hello" />
com.test.hello.HomeController.java
:
@Controller
public class HomeController {
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model) {
model.addAttribute("serverTime", new Date());
return "home";
}
}
和错误信息:
警告:org.springframework.web.servlet.PageNotFound - 在名为“appServlet”的 DispatcherServlet 中找不到带有 URI [/] 的 HTTP 请求的映射
内容web.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>