一、SpringMVC介绍
1.MVC介绍
模型-视图-控制器(MVC 是一个众所周知的以设计界面应用程序为基础的设计模式。它主要通过分离模型、视图及控制器在应用程序中的角色将业务逻辑从界面中解耦。通常,模型负责封装应用程序数据在视图层展示。视图仅仅只是展示这些数据,不包含任何业务逻辑。控制器负责接收来自用户的请求,并调用后台服务(manager或者dao)来处理业务逻辑。处理后,后台业务层可能会返回了一些数据在视图层展示。控制器收集这些数据及准备模型在视图层展示。MVC模式的核心思想是将业务逻辑从界面中分离出来,允许它们单独改变而不会相互影响。
springmvc介绍
概念
优点
二、第一个案例HelloWorld
1.创建web项目
2.导入相关jar包
3.创建配置文件
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> </beans>
4.设置处理器和映射器
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!-- 处理器映射器 将bean的name作为url进行查找 , 需要在配置Handler时指定beanname(就是url) 所有的映射器都实现 HandlerMapping接口。 --> <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" /> <!-- 配置 Controller适配器 --> <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"></bean> </beans>
5.配置前端控制器
<?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"> <display-name>test</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <!-- 配置前端控制器 --> <!-- contextConfigLocation配置springmvc加载的配置文件(配置处理器映射器、适配器等等) 如果不配置contextConfigLocation, 默认加载的是/WEB-INF/servlet名称-serlvet.xml(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-mvc.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
6.创建自定义的Controller
/** * 自定义控制器 * 必须实现Controller接口 * @author dpb【波波烤鸭】 * */ public class UserController implements Controller{ @Override public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception { System.out.println("本方法被调用了..."); ModelAndView view = new ModelAndView(); view.setViewName("/index.jsp"); return view; } }
7.测试效果
三、注解方式的使用
1.修改配置文件开启注解方式
<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" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd"> <!-- 开启注解 --> <mvc:annotation-driven></mvc:annotation-driven> <!-- 开启扫描 --> <context:component-scan base-package="com.dpb.controller"></context:component-scan> </beans>
2.controller中通过注解实现
/** * 自定义controller * @author dpb【波波烤鸭】 * */ @Controller // 交给Spring容器管理 @RequestMapping("/user") // 设置请求的路径 public class UserController { /** * 查询方法 * 请求地址是: * http://localhost:8080/SpringMVC-03-hellowordAnnation/user/query * @return */ @RequestMapping("/query") public ModelAndView query(){ System.out.println("波波烤鸭:query"); ModelAndView mv = new ModelAndView(); mv.setViewName("/index.jsp"); return mv; } /** * 添加方法 * 请求地址是: * http://localhost:8080/SpringMVC-03-hellowordAnnation/user/add * @return */ @RequestMapping("/add") public ModelAndView add(){ System.out.println("波波烤鸭:add"); ModelAndView mv = new ModelAndView(); mv.setViewName("/index.jsp"); return mv; } }
3.测试
四、SpringMVC工作原理的介绍
1.原理图
springmvc工作原理
2.流程文字说明
3.组件说明