(一)DispatcherServlet
<servlet>
<!-- 配置前端控制器 -->
<servlet-name>springmvc</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<!-- 初始化时加载配置文件 -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-config.xml</param-value>
</init-param>
<!-- 表示容器在启动时立即加载 Servlet -->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
备注:
(1) < Ioad-on-startup> 元素的值为 1 ,则在应用程序启动时会立即加载该 Servlet;
如果 < Ioad-on-starup>元素不存在,则应用程序会在第一个 Servlet 请求时加载该 Servlet。
(2)< init-param>元素存在,并且配置了配置文件的路径,则应用程序在启动时会加载配置路径下的配置文件;
如果没有通过 < init-param>元素配置,则应用程序会默认到 WEB-INF 目录下寻找如下方式命名的配置文件:springmvc-servlet.xml。其中springmvc是 < servlet-name> 标签的值。
(二)Controller注解类型
注解形式为 @Controller, 然后通过 Spring 的扫描机制找到标注了该注解的控制器即可。
<context:component-scan base-package="com.allen.controller" />
(三)RequestMap注解类型
(1)注解的使用
RequestMapping 注解类型用于映射一个请求或一个方法,其注解形式为@RequestMapping ,可以使用该注解标注在一个方法或一个类上 。
(Ⅰ)标注在方法上
@Controller
public class FirstContro11er{
@RequestMapping(value="/handleRequest")
public ModelAndView handleRequest(HttpServletRequest request,HttpServletResponse response) {
...
return mav;
}
}
(Ⅱ)标注在类上
@Controller
@RequestMapping(value="/firstController")
public class FirstContro11er{
@RequestMapping(value="/handleRequest")
public ModelAndView handleRequest(HttpServletRequest request,HttpServletResponse response) {
...
return mav;
}
}
请求url为 → http://localhost:8081/springmvc02/firstController/handleRequest
(2)注解的属性
(3)组合注解
- @GetMapping: 匹配 GET 方式的请求 。
- @PostMapping: 匹配 POST 方式的请求 。
- @PutMapping: 匹配 PUT 方式的请求 。
- @DeleteMapping: 匹配 DELETE 方式的请求 。
- @PatchMapping: 匹配 PATCH 方式的请求 。
以 @GetMapping 为例,该组合注解是@RequestMapping(method = RequestMethod .GET)的缩写
//普通模式
@RequestMapping(value="/user" , method=Request.GET)
public String selectUserById(String id) {
...
}
//组合注解模式
@GetMapping(value="/user")
public String selectUserByld(String id) {
...
}
(四)ViewResolver (视图解析器)
Spring MVC 中的视图解析器负责解析视图,可以通过在配置文件中定义一个 ViewResolver来配置视图解析器。
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
(五)应用案例
(1)导入jar
(2)配置前端控制器(DispatherServlet)
在web.xml文件中进行配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<servlet>
<!-- 配置前端控制器 -->
<servlet-name>springmvc</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<!-- 初始化时加载配置文件 -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-config.xml</param-value>
</init-param>
<!-- 表示容器在启动时立即加载 Servlet -->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
(3)配置springmvc-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd
">
<!-- 需要扫描的包 -->
<context:component-scan base-package="com.allen.controller" />
<!-- 定义视图解析器 -->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
(4)编写控制器Controller类
@Controller
@RequestMapping(value ="/hello")
public class FirstController {
@RequestMapping(value ="/handleRequest")
public String handleRequest(HttpServletRequest request,
HttpServletResponse response, Model model) {
model.addAttribute("msg", "---这是第二个 Spring MVC 程序---");
return "first";
}
}
(5)启动
http://localhost:8081/springmvc02/hello/handleRequest