SpringMVC介绍
SpringMVC作用在三层框架的表现层: 其实就相当于mvc设计模式中的控制器,它并不是一个单独的框架,它只是Spring框架中的一个模块。它也需要依赖spring的核心jar包
持久层: Mybatis
业务层: Spring
表现层: Springmvc
MVC: 由 模型 , 视图 , 控制器 三部分组成
M: model :模型是一个广义上的概念,一般用来处理业务的java类都可以称之为模型
C: controller : 主要用来接收客户端的请求,不能处理业务,控制器调用模型处理业务,然后得到模型返回的结果。
V:view : 控制器得到模型返回的结果以后,需要通过视图 向用户展示。
SpringMVC: 它的核心组件就是一个Servlet,叫做前端控制器
也叫中央控制器.
1.前端控制器(DispatcherServlet):就是一个servlet. 该组件跟其他所有的组件都有交互,可以降低其他组件的耦合关系。不需要我们编写
2.处理器映射器(HandlerMapping): 会规范handler路径,前端控制器通过请求处理器映射器得到Handler,不需要我们编写
3.处理器适配器(HandlerAdapter): 用来执行我们编写的Handler程序,所以我们在编写Handler的时候, 需要遵循HandlerAdapter的规范,不需要我们编写
4.Handler:由我们自己编写。出来处理业务
5.视图解析器(ViewResolver): 将逻辑视图转化成一个物理视图。也不需要我们编写
6.视图: jsp
SpringMVC入门小程序
查询商品信息, 并且将信息展示到页面
1.准备jar包(下面提供所有的jar包!)
2.配置前端控制器 DispatcherServlet
在web.xml中配置:
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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_3_1.xsd"
version="3.1">
<!-- 配置前端控制器配置初始化参数, 用来加载springmvc的配置文件
需要在springmvc.xml中
配置映射器, 适配器, Handler, 视图解析器.
如果不配置这个路径, 那么会去加载一个默认路径下的文件
/WEB-INF/springmvc-servlet.xml -->
<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:spring/springmvc.xml</param-value>
</init-param>
</servlet>
<!--
*.action / *.do
请求路径中以.action或者.do都会被拦截
-->
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>
- 配置处理器适配器SimpleControllerHandlerAdapter
- 配置处理器映射器
- 配置Handler的访问路径
- 配置视图解析器
在类路径下的spring/springmvc.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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
<!-- 配置处理器适配器 -->
<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/>
<!-- 配置处理器映射器, 该映射器要求我们使用bean的name属性作为访问路径 -->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
<!-- 配置Handler的访问路径 -->
<bean name="/queryItems.do" class="com.wtu.handler.HandlerDemo1"/>
<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"/>
</beans>
- 编写Handler
因为Handler需要适配器来执行,所以按照适配器的要求编写Handler,通过查看源代码发现我们编写Handler需要实现一个Controller接口
public class HandlerDemo1 implements Controller {
@Override
public ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
Items items = new Items();
items.setId(1);
items.setName("小米");
items.setPrice(1500.0);
items.setCreatetime(new Date());
items.setDetail("不做评价");
List<Items> itemsList = new ArrayList<>();
itemsList.add(items);
// 创建ModelAndView
ModelAndView mav = new ModelAndView();
// 相当于request.setAttribute(name, value);
mav.addObject("itemsList", itemsList);
// 设置转发的路径
mav.setViewName("/jsp/itemsList.jsp");
return mav;
}
}
实体类:
public class Items {
private Integer id;
private String name;
private Double price;
private String detail;
private String pic;
private Date createtime;
// ...
}
JSP页面: 视图展示
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>查询商品列表</title>
</head>
<body>
<form action="${pageContext.request.contextPath }/item/queryItem.action" method="post">
查询条件:
<table width="100%" border=1>
<tr>
<td><input type="submit" value="查询"/></td>
</tr>
</table>
商品列表:
<table width="100%" border=1>
<tr>
<td>商品名称</td>
<td>商品价格</td>
<td>生产日期</td>
<td>商品描述</td>
<td>操作</td>
</tr>
<c:forEach items="${itemsList }" var="item">
<tr>
<td>${item.name }</td>
<td>${item.price }</td>
<td><fmt:formatDate value="${item.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
<td>${item.detail }</td>
<td><a href="${pageContext.request.contextPath }/item/editItem.action?id=${item.id}">修改</a></td>
</tr>
</c:forEach>
</table>
</form>
</body>
</html>
此时访问http://localhost:8080/项目名/queryItems.do
就能够访问到Handler
https://github.com/menglanyingfei/SSMLearning/blob/master/SSM%E6%89%80%E9%9C%80jar%E5%8C%85.7z https://github.com/menglanyingfei/SSMLearning/tree/master/springmvc_day01