spring框架(三)mvc

目录

1.1准备测试数据

 1.2 ApplicationContext应用上下文获取方式

1.2.1添加listener包

1.2.2解耦配置文件

1.2.3 继续提取ContextLoaderListener.java中参数app

1.2.4 Spring提供获取应用上下文的工具

二、SpringMVC

2.1概述

 2.2数据准备

 2.3添加success.jsp页面

2.4 package com.study.test.Controller;添加类

2.5 创建spring-mvc.xml 

2.6在web.xml中配置加载 spring-mvc.xml 的配置

三、Spring mvc 组件解析

3.1 SpringMVC的执行流程

3.1 SpringMVC的执行流程 

3.2 SpringMVC组件解析

3.3 SpringMVC注解解析

3.4 SpringMVC的XML配置解析

3.5 知识要点



一、Spring与Web环境集成

1.1准备测试数据

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.example</groupId><artifactId>Spring3-mvc</artifactId><version>1.0-SNAPSHOT</version><name>Spring3-mvc</name><packaging>war</packaging><properties><maven.compiler.target>1.8</maven.compiler.target><maven.compiler.source>1.8</maven.compiler.source><junit.version>5.7.1</junit.version></properties><dependencies><dependency><groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId><version>4.0.1</version><scope>provided</scope></dependency><dependency><groupId>com.example</groupId><artifactId>Spring-mvn-test</artifactId><version>1.0-SNAPSHOT</version><scope>compile</scope></dependency><!-- https://mvnrepository.com/artifact/org.springframework/spring-web --><dependency><groupId>org.springframework</groupId><artifactId>spring-web</artifactId><version>5.3.14</version></dependency><!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>5.3.16</version></dependency><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>8.0.15</version></dependency><dependency><groupId>com.alibaba</groupId><artifactId>druid</artifactId><version>1.0.9</version></dependency><!-- https://mvnrepository.com/artifact/com.mchange/c3p0 --><dependency><groupId>com.mchange</groupId><artifactId>c3p0</artifactId><version>0.9.5.2</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>5.0.2.RELEASE</version></dependency><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.12</version><scope>test</scope></dependency></dependencies><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-war-plugin</artifactId><version>3.3.1</version></plugin>                </plugins></build>
</project>

dao层

package com.study.dao.impl;import com.study.dao.userDao;public class userDaoImpl implements userDao {@Overridepublic void save() {System.out.println("  你好");}}

service层

package com.study.Service.impl;
import com.study.Service.userService;
import com.study.dao.userDao;public class userServiceImpl implements userService {private userDao userDao;public void setUserDao(userDao userDao) {this.userDao = userDao;}@Overridepublic void inke() {userDao.save();}
}

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context"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.xsdhttp://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context.xsd"><bean id="userDao" class="com.study.dao.impl.userDaoImpl"></bean><bean id="userService" class="com.study.Service.impl.userServiceImpl"><property name="userDao" ref="userDao"></property></bean></beans>

遇到一次报错

java.lang.NoClassDefFoundError: org/springframework/context/ApplicationContext

原因:把maven中导入的依赖的jar包(从本地仓库找中拿出来),放到了输出根目录里面。在maven项目中启动tomcat 后日志中就出现异常信息找不到WebApplicationContextWare,可能是找不到相关jar包导致,但是Maven依赖导入的jar包没问题,所以它是在根目录下找不到jar包所以报错。
————————————————
版权声明:本文为CSDN博主「技动」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/mo_ji63/article/details/107969415

解决办法就是:同原文链接

 web层

package com.study.test.web;import com.study.test.service.UserServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.annotation.*;
import java.io.IOException;public class testServlet extends HttpServlet {@Overrideprotected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");UserServiceImpl bean = app.getBean(UserServiceImpl.class);bean.invoke();}@Overrideprotected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {this.doGet(request, response);}
}

 配置web.xml

<?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"><servlet><servlet-name>Servlet</servlet-name><servlet-class>com.study.test.web.testServlet</servlet-class></servlet><servlet-mapping><servlet-name>Servlet</servlet-name><url-pattern>/service</url-pattern></servlet-mapping>
</web-app>

 1.2 ApplicationContext应用上下文获取方式

原因:应用上下文对象是通过new ClasspathXmlApplicationContext(spring配置文件) 方式获取的,但是每次从 容器中获得Bean时都要编写newClasspathXmlApplicationContext(spring配置文件) ,这样的弊端是配置 文件加载多次,应用上下文对象创建多次。

处理方式:在Web项目中,可以使用ServletContextListener监听Web应用的启动,我们可以在Web应用启动时,就加 载Spring的配置文件,创建应用上下文对象ApplicationContext,在将其存储到最大的域servletContext域 中,这样就可以在任意位置从域中获得应用上下文ApplicationContext对象了。

1.2.1添加listener包

package com.study.test.listener;import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;/*** @author Alina* @date 2022年03月18日 10:51 下午*/
public class ContextLoaderListener implements ServletContextListener {@Overridepublic void contextInitialized(ServletContextEvent sce) {ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");//存储到最大的域ServletContext servletContext = sce.getServletContext();System.out.println("监听器");servletContext.setAttribute("app",app);}@Overridepublic void contextDestroyed(ServletContextEvent sce) {}
}

web.xml添加 

<listener><listener-class>com.study.test.listener.ContextLoaderListener</listener-class>
</listener>

1.2.2解耦配置文件

web.xml添加

<!--添加全局配置参数-->
<context-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value>
</context-param>

package com.study.test.listener;import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;/*** @author Alina* @date 2022年03月18日 10:51 下午*/
public class ContextLoaderListener implements ServletContextListener {@Overridepublic void contextInitialized(ServletContextEvent sce) {ServletContext servletContext = sce.getServletContext();//读取全局参数配置文件String contextConfigLocation = servletContext.getInitParameter("contextConfigLocation");ApplicationContext app = new ClassPathXmlApplicationContext(contextConfigLocation);//存储到最大的域System.out.println("监听器");servletContext.setAttribute("app",app);}@Overridepublic void contextDestroyed(ServletContextEvent sce) {}
}

1.2.3 继续提取ContextLoaderListener.java中参数app

在package com.study.test.listener;添加WebApplicationContextUtils 工具类

public class WebApplicationContextUtils {public static ApplicationContext getApplicationContext(ServletContext servletContext){return (ApplicationContext) servletContext.getAttribute("app");}
}
package com.study.test.web;改写
package com.study.test.web;import com.study.test.listener.WebApplicationContextUtils;
import com.study.test.service.UserServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.annotation.*;
import java.io.IOException;public class testServlet extends HttpServlet {@Overrideprotected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {ServletContext servletContext = request.getServletContext();ApplicationContext app = WebApplicationContextUtils.getApplicationContext(servletContext);UserServiceImpl bean = app.getBean(UserServiceImpl.class);bean.invoke();}@Overrideprotected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {this.doGet(request, response);}
}

1.2.4 Spring提供获取应用上下文的工具

1在web.xml中配置ContextLoaderListener监听器(导入spring-web坐标)

<dependency><groupId>org.springframework</groupId><artifactId>spring-web</artifactId><version>5.3.14</version>
</dependency>

<!--添加全局配置参数-->
<context-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

2.使用WebApplicationContextUtils获得应用上下文对象ApplicationContext

package com.study.test.web;import com.study.test.service.UserServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.annotation.*;
import java.io.IOException;public class testServlet extends HttpServlet {@Overrideprotected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {ServletContext servletContext = request.getServletContext();
//        ApplicationContext app = WebApplicationContextUtils.getApplicationContext(servletContext);WebApplicationContext app = WebApplicationContextUtils.getWebApplicationContext(servletContext);UserServiceImpl bean = app.getBean(UserServiceImpl.class);bean.invoke();}@Overrideprotected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {this.doGet(request, response);}
}

二、SpringMVC

2.1概述

SpringMVC 是一种基于 Java 的实现 MVC 设计模型的请求驱动类型的轻量级 Web 框架,属于 SpringFrameWork 的后续产品,已经融合在 Spring Web Flow 中。

SpringMVC 已经成为目前最主流的MVC框架之一,并且随着Spring3.0 的发布,全面超越 Struts2,成为最优 秀的 MVC 框架。它通过一套注解,让一个简单的 Java 类成为处理请求的控制器,而无须实现任何接口。同时 它还支持 RESTful 编程风格的请求。

 2.2数据准备

pom.xml

  <!--Spring坐标--><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.0.5.RELEASE</version></dependency> <!--SpringMVC坐标--><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>5.0.5.RELEASE</version></dependency><!--Servlet坐标--> <dependency><groupId>javax.servlet</groupId><artifactId>servlet-api</artifactId><version>2.5</version>
</dependency> <!--Jsp坐标--><dependency><groupId>javax.servlet.jsp</groupId><artifactId>jsp-api</artifactId><version>2.0</version></dependency>

web.xml添加

<!--    SpringMVC的核心控制器--><servlet><servlet-name>DispatcherServlet</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--        服务器启动时就添加--><load-on-startup>1</load-on-startup></servlet><servlet-mapping><servlet-name>DispatcherServlet</servlet-name><url-pattern>/</url-pattern></servlet-mapping>

 2.3添加success.jsp页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>1</title>
</head>
<body>
你好,,,,,</body>
</html>

2.4 package com.study.test.Controller;添加类

package com.study.test.Controller;import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;/*** @author Alina* @date 2022年03月19日 12:04 上午*/
//放在spring 容器内
@Controller
public class QuickController {//添加映射地址@RequestMapping("/quick")public String quickMethod(){System.out.println("quickMethod running.....");return "success.jsp"; }}

2.5 创建spring-mvc.xml 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context"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.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!--    添加组件扫描--><context:component-scan base-package="com.student.test.controller"/></beans>

2.6在web.xml中配置加载 spring-mvc.xml 的配置

在web.xml中配置

<?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">
<!--    SpringMVC的核心控制器--><servlet><servlet-name>DispatcherServlet</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>
<!--        服务器启动时就添加--><load-on-startup>1</load-on-startup></servlet><servlet-mapping><servlet-name>DispatcherServlet</servlet-name><url-pattern>/</url-pattern></servlet-mapping><!--添加全局配置参数--><context-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value></context-param><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><servlet><servlet-name>Servlet</servlet-name><servlet-class>com.study.test.web.testServlet</servlet-class></servlet><servlet-mapping><servlet-name>Servlet</servlet-name><url-pattern>/service</url-pattern></servlet-mapping>
</web-app>

三、Spring mvc 组件解析

3.1 SpringMVC的执行流程

3.1 SpringMVC的执行流程 

1 用户发送请求至前端控制器DispatcherServlet。
2 DispatcherServlet收到请求调用HandlerMapping处理器映射器。
3 处理器映射器找到具体的处理器(可以根据xml配置、注解进行查找),生成处理器对象及处理器拦截器(如果

有则生成)一并返回给DispatcherServlet。
4 DispatcherServlet调用HandlerAdapter处理器适配器。
5 HandlerAdapter经过适配调用具体的处理器(Controller,也叫后端控制器)。
6 Controller执行完成返回ModelAndView。
7 HandlerAdapter将controller执行结果ModelAndView返回给DispatcherServlet。
8 DispatcherServlet将ModelAndView传给ViewReslover视图解析器。
9 ViewReslover解析后返回具体View。
10 DispatcherServlet根据View进行渲染视图(即将模型数据填充至视图中)。DispatcherServlet响应用户。

3.2 SpringMVC组件解析

1. 前端控制器:DispatcherServlet

用户请求到达前端控制器,它就相当于 MVC 模式中的 C,DispatcherServlet 是整个流程控制的中心,由 它调用其它组件处理用户的请求,DispatcherServlet 的存在降低了组件之间的耦合性。

2. 处理器映射器:HandlerMapping

HandlerMapping 负责根据用户请求找到 Handler 即处理器,SpringMVC 提供了不同的映射器实现不同的 映射方式,例如:配置文件方式,实现接口方式,注解方式等。

3. 处理器适配器:HandlerAdapter

通过 HandlerAdapter 对处理器进行执行,这是适配器模式的应用,通过扩展适配器可以对更多类型的处理 器进行执行。

4. 处理器:Handler

它就是我们开发中要编写的具体业务控制器。由 DispatcherServlet 把用户请求转发到 Handler。由 Handler 对具体的用户请求进行处理。

5. 视图解析器:View Resolver

View Resolver 负责将处理结果生成 View 视图,View Resolver 首先根据逻辑视图名解析成物理视图名,即 具体的页面地址,再生成 View 视图对象,最后对 View 进行渲染将处理结果通过页面展示给用户。

6. 视图:View

SpringMVC 框架提供了很多的 View 视图类型的支持,包括:jstlView、freemarkerView、pdfView等。最 常用的视图就是 jsp。一般情况下需要通过页面标签或页面模版技术将模型数据通过页面展示给用户,需要由程 序员根据业务需求开发具体的页面

3.3 SpringMVC注解解析

@RequestMapping

作用:用于建立请求 URL 和处理请求方法之间的对应关系 位置:

 类上,请求URL 的第一级访问目录。此处不写的话,就相当于应用的根目录

 方法上,请求 URL 的第二级访问目录,与类上的使用@ReqquestMapping标注的一级目录一起组成访问虚拟路径 属性:

 value:用于指定请求的URL。它和path属性的作用是一样的
 method:用于指定请求的方式
 params:用于指定限制请求参数的条件。它支持简单的表达式。要求请求参数的key和value必须和配置的一模一样

例如:
 params = {"accountName"},表示请求参数必须有accountName  params = {"moeny!100"},表示请求参数中money不能是100

1. mvc命名空间引入

命名空间:xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc"

约束地址:http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd

2. 组件扫描

SpringMVC基于Spring容器,所以在进行S pri ngM VC操作时,需要将C ont rol ler存储到 Spr ing容器中,如果使 用@Controller注解标注的话,就需要使用<context:component-scan base- package=“com.itheima.controller"/>进行组件扫描。

3.4 SpringMVC的XML配置解析

1. 视图解析器

SpringMVC有默认组件配置,默认组件都是DispatcherServlet.properties配置文件中配置的,该配置文件地址 org/springframework/web/servlet/DispatcherServlet.properties,该文件中配置了默认的视图解析器,如下:

org.springframework.web.servlet.ViewResolver=org.springframework.web.servlet.view.I nternalResourceViewResolver

翻看该解析器源码,可以看到该解析 器的默 认设置 ,如下 :

3.5 知识要点

SpringMVC的相关组件

• 前端控制器:DispatcherServlet

• 处理器映射器:HandlerMapping

• 处理器适配器:HandlerAdapter 总结

  • 处理器:Handler

  • 视图解析器:View Resolver

  • 视图:View

SpringMVC的注解和配置

• 请求映射注解:@RequestMapping

• 视图解析器配置: REDIRECT_URL_PREFIX = "redirect:"

FORWARD_URL_PREFIX = "forward:" prefix = "";
suffix = "";

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/421638.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python判断字符串中包含某个字符串_干货分享| Python中最常用的字符串方法

字符串是字符序列。Python中内置的string类代表基于Unicode国际字符集的字符串。除了Python中常见的操作外,字符串还有一些专属于它们的附加方法。下图显示了所有这些可用的方法: Python中的内置字符串函数 在本文中,我们将学习一些最常用的方法。这里需要注意的重要一点是,…

spring (四) SpringMVC的请求和响应

目录 前言 一、SpringMVC的数据响应 1.1 SpringMVC的数据响应方式 1.1.1页面跳转 直接返回字符串 ​ 1.1.2通过ModelAndView对象返回 1.2 回写数据 1.2.1直接返回字符串 1.2.2返回对象或集合 二、SpringMVC获得请求数据 2.1 获得请求参数 2.2 获得基本类型…

拼接路径优雅方式_中年女人最好少穿马丁靴,简约的“无痕靴”更适合你,优雅高级...

女人在到了中年的时候&#xff0c;经过很多世事的沉淀&#xff0c;气质也会变得更加的淡定与从容。在穿搭上面&#xff0c;也不会喜欢像小姑娘那般的去盲目地追求潮流&#xff0c;跟风一些并不适合自己穿搭的服装&#xff0c;强行的装嫩的话&#xff0c;也会显得有些尴尬。中年…

spring框架(五)之JdbcTemplate基本使用

数据准备 <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/POM/4.0.0 …

spring框架(六)之拦截器

一. SpringMVC拦截器 1.1 拦截器(interceptor)的作用 Spring MVC 的拦截器类似于 Servlet 开发中的过滤器 Filter&#xff0c;用于对处理器进行预处理和后处理。 将拦截器按一定的顺序联结成一条链&#xff0c;这条链称为拦截器链(Interceptor Chain)。在访问被拦截的方 法或…

取最大值_查找数组中最大值的5种方法!(动图演示)

我们在一些特定场景下&#xff0c;例如查询公司员工的最高薪资&#xff0c;以及班级的最高成绩又或者是面试中都会遇到查找最大值的问题&#xff0c;所以本文我们就来列举一下查询数组中最大值的 5 种方法。首先我们来看最原始也是最“笨”的实现方法&#xff1a;循环对比和递归…

文件跟随_如何在苹果Mac上将文件合并为PDF?推荐收藏

当有不同页面合并到一个文档中时&#xff0c;可能需要合并PDF文件&#xff0c;那么如何在苹果Mac电脑上将文件合并为PDF&#xff1f;其实您可以在电脑上直接合并&#xff0c;操作非常简单&#xff0c;当然如果您有其他要求&#xff0c;比如说多个pdf文件的合并&#xff0c;需要…

linux翻页查看命令_在 Linux 命令行使用 more 查看文本文件

文本文件和 Linux 一直是携手并进的。或者说看起来如此。那你又是依靠哪些让你使用起来很舒服的工具来查看这些文本文件的呢&#xff1f;-- Scott NesbittLinux 下有很多实用工具可以让你在终端界面查看文本文件。其中一个就是 more 。more 跟我之前另一篇文章里写到的工具 ——…

pil 图像最大值_python:PIL库中Image类thumbnail方法和resize方法的比较

from PIL import ImageimImage.open("C:\\Users\\kethur\\Desktop\\a.jpg")x,yim.sizeprint("原图像im大小为&#xff1a;",x,y)im.resize((128,128))print(im.size)reimim.resize((128,128))print("resize后的图像reim大小为&#xff1a;",reim…