1.三层架构
- 表现层:WEB层,用来和客户端进行数据交互的。
- 业务层:处理公司具体的业务逻辑的
- 持久层:用来操作数据库的。
2.MVC设计模式介绍
- Model:数据模型,JavaBean的类,用来进行数据封装。
- View:指JSP、HTML用来展示数据给用户
- Controller:用来接收用户的请求,整个流程的控制器。用来进行数据校验等
3.Spring Mvc简介
????????Spring Web MVC是一种基于Java的实现了Web MVC设计模式的请求驱动类型的轻量级Web框架,即使用了MVC架构模式的思想,将web层进行职责解耦,基于请求驱动指的就是使用请求-响应模型,框架的目的就是帮助我们简化开发,Spring Web MVC也是要简化我们日常Web开发的。
4.请求流程
? ? ? ? ①发送请求到DispatcherServlet????????②收到请求调用HandlerMapping映射器,生成对象并返回给DispatcherServlet????????④通过HandlerAdapter处理器适配器调用处理器????????⑤执行控制器Controller????????⑥执行完成返回ModelAndView????????⑦HandlerAdapter将controller执行结果ModelAndView返回给DispatcherServlet????????⑧将ModelAndView传给ViewReslover视图解析器? ? ? ? ⑨ViewReslover解析后返回具体视图????????⑩DispatcherServlet将数据填充到视图中
5.XML方式
创建导包,
配置文件web.xml和basic-servlet.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">
<display-name>SpringMVC_01_Basic</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>
<servlet>
<!-- 设置所有请求拦截到分发器
第一种 如果SpringMVC的配置文件,和web.xml在同一个目录
比如 MVC配置文件名字叫 basic-servlet.xml
只需要把servlet-name的值 设置为basic就可以,
但是 MVC配置文件的名字必须是xxx-servlet.xml的格式 -->
<servlet-name>basic</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 指定配置文件-->
<!-- <init-param> -->
<!-- <param-name>contextConfigLocation</param-name> -->
<!-- 可以放在任何地方 -->
<!-- <param-value>/a/b/c/d/xxxxxxxxx.xml</param-value> -->
<!-- 放在src下 -->
<!-- <param-value>classpath:xxxxxxxxx.xml</param-value> -->
<!-- </init-param> -->
<!-- 项目启动就会加载这个servlet -->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>basic</servlet-name>
<url-pattern>/</url-pattern>
<!--
/* 会拦截jsp文件
/ 不会拦截jsp
-->
</servlet-mapping>
</web-app>
<?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"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">
<!-- 使用XML进行映射
MVC框架基本两个点
1 url怎么映射进去进行处理
2 处理完如何找到视图
-->
<!-- 处理映射器配置-->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
<!-- 创建映射,配置映射器,name必须是 / 打头-->
<bean name="/w" class="com.tledu.controller.XmlMappingController"/>
<!-- 视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
创建一个控制器类,
package com.tledu.controller;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class XmlMappingController extends AbstractController {
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
System.out.println("Welcome~");
return new ModelAndView("welcome");
}
}
编写jsp页面,
<%--
Created by IntelliJ IDEA.
User: cyrus
Date: 2021/04/07
Time: 0:44
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
欢迎来到天亮教育
</body>
</html>
测试,结束
6.注解方式
配置文件
<?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"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">
<context:component-scan base-package="com.tledu.zrz.springmvc.controller"/>
<mvc:annotation-driven />
<!--视图解析器 -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix"value="/WEB-INF/jsp/"/>
<property name="suffix"value=".jsp"/>
</bean>
</beans>
常用注解
@Controller
@RestController
@RequestMapping
@RequestBody
@RequestParam
@PathVaraible
@ResponseBody
SessionAttributes注解
控制器类和参数绑定
|