高效学习习惯啊 坚持,比如这样经常更新博客,保持学习哈哈哈
SpringMVC-SpringMVC引入
- 1 SpringMVC引入
- 1.1 引言
- 1.2 MVC架构
- 1.2.1 概念
- 1.2.2 好处
- 1.2.3 执行流程【重点】
- 2 快速入门
- 2.1 导入依赖
- 2.2 配置核心(前端)控制器
- 2.3 springmvc核心配置文件
- 2.4 创建处理器(Handler)
- 2.5 测试访问
- 2.6 配置视图解析器
1 SpringMVC引入
1.1 引言
Spring MVC属于SpringFrameWork的后续产品,已经融合在Spring Web Flow里面。
Spring 框架提供了构建 Web 应用程序的全功能 MVC 模块。
使用 Spring 可插入的 MVC 架构,从而在使用Spring进行WEB开发时,可以选择使用Spring的Spring MVC框架或集成其他MVC开发框架,如Struts1(现在一般不用),Struts 2(一般老项目使用)等等。
1.2 MVC架构
一种编码习惯
1.2.1 概念
名称 | 职责 |
---|---|
Model | 模型:即业务模型,负责完成业务中的数据通信处理,对应项目中的 service和dao |
View | 视图:渲染数据,生成页面。对应项目中的Jsp |
Controller | 控制器:直接对接请求,控制MVC流程,调度模型,选择视图。对应项目中的Servlet |
1.2.2 好处
MVC是现下软件开发中的最流行的代码结构形态;
人们根据负责的不同逻辑,将项目中的代码分成 M V C 3个层次;
层次内部职责单一,层次之间耦合度低;
符合低耦合 高内聚的设计理念。也实际有利于项目的长期维护。
1.2.3 执行流程【重点】
SpringMVC执行流程 |
---|
处理请求和做出响应:servlet(MVC框架底层技术)和过滤器filter(Struts 2)
中央控制器dispatcherservlet (调度程序小程序) 相当于CPU
处理器映射器 handlermapping 接收请求,寻找对应路径
视图解析器
处理器适配器
2 快速入门
2.1 导入依赖
- spring的核心依赖
spring-context
- SpringMVC的依赖
spring-webmvc
<!-- 导入Spring的依赖 -->
<dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.3.6</version>
</dependency>
<!-- 导入SpringMVC的依赖 -->
<dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>5.3.6</version>
</dependency>
2.2 配置核心(前端)控制器
作为一个MVC框架,首先要解决的是:如何能够收到请求!
所以MVC框架大都会设计一款前端控制器,选型在 Servlet 或 Filter两者之一,在框架最前沿率先工作,接收所有请求。
此控制器在接收到请求后,还会负责springMVC的核心的调度管理,所以既是前端又是核心。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"version="4.0"><!-- 配置前端控制器DispatcherServlet --><servlet><servlet-name>dispatcherServlet</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><!--初始化参数(在Servlet初始化的时候可以获取) 希望SpringMVC的配置文件在此刻加载--><init-param><!--配置文件的路径--><param-name>contextConfigLocation</param-name><param-value>classpath:springmvc.xml</param-value></init-param><!--当tomcat启动的时候,就创建这个Servlet(不一定非要配置)--><load-on-startup>1</load-on-startup></servlet> <servlet-mapping><servlet-name>dispatcherServlet</servlet-name><!--1、完全匹配/aaa /hello /user/xxx2、通配符匹配/ 匹配所有路径 不包含.jsp (推荐)/* 匹配所有路径3、后缀名匹配 现在用restful模式,后缀名匹配现在不常用*.xxx *.do *.action--><url-pattern>/</url-pattern></servlet-mapping>
</web-app>
2.3 springmvc核心配置文件
<?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/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/mvchttp://www.springframework.org/schema/mvc/spring-mvc.xsdhttp://www.springframework.org/schema/contexthttps://www.springframework.org/schema/context/spring-context.xsd"><!--开启Spring的注解扫描--><context:component-scan base-package="com.ying"/><!--开启SpringMVC的注解扫描--><mvc:annotation-driven />
</beans>
2.4 创建处理器(Handler)
@Controller
public class TestController {@RequestMapping("/t1")public void test01(){System.out.println("SpringMVC执行了");}
}
2.5 测试访问
http://localhost:8080/t1
此时控制台会打印结果,但是会出现404的错误,原因是因为没有配置视图解析器
500 HTTP状态 500 - 内部服务器错误
2.6 配置视图解析器
在springmv的配置文件中加入视图解析器的配置
只能配置一个
- 如果是前后端分离则无需配置 将统一访问JSON
<!--配置视图解析器(如果是前后端分离则无需配置)-->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"><!--前缀:在视图前加上 xxx--><property name="prefix" value="/pages/"/><!--视图解析器后缀配置:在视图后加上 xxx--><property name="suffix" value=".jsp"/>
</bean>
@Controller //表示当前类是一个控制器,可以用于处理请求和响应
public class TestController {@RequestMapping("t1") // /test01public String test01(){System.out.println("SpringMVC执行了......");return "hello"; //String就是模型视图 内部转发(路径未变,内容变了),自动添加为 "/pages/hello.jsp"}@RequestMapping("t2")public String test02(){System.out.println("springmvc执行了test02");return "hello";}//前端页面均访问了,并且后端返回对应的SpringMVC执行了......或者springmvc执行了test02
}