官方文档:https://docs.spring.io/spring-framework/docs/current/reference/html/web.html#spring-web
中文文档:http://c.biancheng.net/spring_mvc/
Spring MVC围绕DispatcherServlet设计,DispatcherServlet的作用是将请求分发到不同的处理器。从Spring 2.5开始,使用Java 5或者以上版本的用户可以采用基于注解@controller的声明方式。
Spring MVC框架像许多其他MVC框架一样, 以请求为驱动 , 围绕一个中心Servlet分派请求及提供其他功能,DispatcherServlet是一个实际的Servlet (它继承自HttpServlet 基类)。
原理
当发起请求时被**前置控制器(DispatcherServlet)**拦截到请求,根据请求参数生成代理请求,找到请求对应的实际控制器,控制器处理请求,创建数据模型,访问数据库,将模型响应给中心控制器(DispatcherServlet),控制器使用模型与视图渲染视图结果,将结果返回给中心控制器(DispatcherServlet),再将结果返回给请求者。
执行流程(重点)
图为SpringMVC的一个较完整的流程图,实线(有数字标识的)表示SpringMVC框架提供的技术,不需要开发者实现,虚线表示需要开发者实现。
我们就只需要实现conroller对请求做怎样的操作(这里面包括调用业务获取数据库数据),然后写jsp(html)去展示。
简要分析执行流程(重点)
1.1、创建普通maven项目(我们采用普通maven项目来创建web项目,记得添加web框架支持)
1.2、导入spring-webmvc依赖及资源过滤(确保java包下的xml文件也能生成)
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.12version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.9version>
dependency>
<dependency>
<groupId>javax.servletgroupId>
<artifactId>javax.servlet-apiartifactId>
<version>4.0.1version>
dependency>
<dependency>
<groupId>javax.servlet.jspgroupId>
<artifactId>javax.servlet.jsp-apiartifactId>
<version>2.3.3version>
dependency>
<dependency>
<groupId>javax.servlet.jsp.jstlgroupId>
<artifactId>jstl-apiartifactId>
<version>1.2version>
dependency>
dependencies>
<build>
<resources>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
<resource>
<directory>src/main/resourcesdirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
resources>
build>
1.3、配置web.xml , 注册DispatcherServlet
<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>springmvcservlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
<init-param>
<param-name>contextConfigLocationparam-name>
<param-value>classpath:springmvc-servlet.xmlparam-value>
init-param>
<load-on-startup>1load-on-startup>
servlet>
<servlet-mapping>
<servlet-name>springmvcservlet-name>
<url-pattern>/url-pattern>
servlet-mapping>
web-app>
1.4 、SpringMVC的配置文件springmvc-servlet.xml(springmvc-servlet.xml要和上面的web.xml中的配置名一样,因为我们所有的访问都是通过web.xml来找到spring的配置文件,是唯一入口)
SpringMVC的配置文件springmvc-servlet.xml 本质就是spring的配置文件
<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>
1.5、springmvc-servlet.xml文件中添加处理器映射器
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
1.6、springmvc-servlet.xml文件中添加处理器适配器
<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/>
1.7、springmvc-servlet.xml文件中添加视图解析器
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
bean>
1.8、编写我们要操作业务的Controller类 ,实现Controller接口。需要返回一个ModelAndView,装数据,封视图
package com.liqingfeng.controller;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class HelloController implements Controller {
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
//ModelAndView 模型和视图
ModelAndView modelAndView = new ModelAndView();
//封装对象,放在ModelAndView中。Model
modelAndView.addObject("msg","HelloSpringMVC!");
//封装要跳转的视图,放在ModelAndView中
modelAndView.setViewName("hello"); //: /WEB-INF/jsp/hello.jsp
return modelAndView;
}
}
1.9、将自己的类交给SpringIOC容器(springmvc-servlet.xml),注册bean
<bean id="/helloController" class="com.liqingfeng.controller.HelloController"/>
1.10、写要跳转的hello.jsp页面
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>${msg}</h1>
</body>
</html>
1.11、配置Tomcat,启动测试!
这里配置时打包war包时的类型如果是Web Application:Exploded则实际运行环境在当前项目的out文件夹里,如果为Web Application:Archive则实际运行环境在tomcat的webapps里的项目。
可能遇到的问题:访问出现404,解决办法: 在项目结构中如图创建lib文件夹,添加所有的依赖包进来
1、新建一个普通maven项目工程(添加web框架支持
2、在pom.xml文件引入相关的依赖:
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.12version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.9version>
dependency>
<dependency>
<groupId>javax.servletgroupId>
<artifactId>javax.servlet-apiartifactId>
<version>4.0.1version>
dependency>
<dependency>
<groupId>javax.servlet.jspgroupId>
<artifactId>javax.servlet.jsp-apiartifactId>
<version>2.3.3version>
dependency>
<dependency>
<groupId>javax.servlet.jsp.jstlgroupId>
<artifactId>jstl-apiartifactId>
<version>1.2version>
dependency>
dependencies>
<build>
<resources>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
<resource>
<directory>src/main/resourcesdirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
resources>
build>
3、配置web.xml
<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>SpringMVCservlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
<init-param>
<param-name>contextConfigLocationparam-name>
<param-value>classpath:springmvc-servlet.xmlparam-value>
init-param>
<load-on-startup>1load-on-startup>
servlet>
<servlet-mapping>
<servlet-name>SpringMVCservlet-name>
<url-pattern>/url-pattern>
servlet-mapping>
web-app>
注意点:
/ 和 /* 的区别:< url-pattern > / url-pattern > 不会匹配到.jsp, 只针对我们编写的请求;即:.jsp 不会进入spring的 DispatcherServlet类 。< url-pattern > /* url-pattern > 会匹配 *.jsp,会出现返回 jsp视图 时再次进入spring的DispatcherServlet 类,导致找不到对应的controller所以报404错。
4、添加Spring MVC配置文件springmvc-servlet.xml
在resource目录下添加springmvc-servlet.xml配置文件,配置的形式与Spring容器配置基本类似,为了支持基于注解的IOC,设置了自动扫描包的功能,具体配置信息如下:
<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.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
https://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.liqingfeng.controller"/>
<mvc:default-servlet-handler />
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
id="internalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
bean>
在视图解析器中我们把所有的视图都存放在/WEB-INF/目录下,这样可以保证视图安全,因为这个目录下的文件,客户端不能直接访问。
5、创建Controller
package com.liqingfeng.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/HelloController")
public class HelloController {
//真实访问地址 : 项目名/HelloController/hello
@RequestMapping("/hello")
public String sayHello(Model model){
//向模型中添加属性msg与值,可以在JSP页面中取出并渲染
model.addAttribute("msg","hello,SpringMVC");
//web-inf/jsp/hello.jsp
return "hello";
}
}
6、创建视图层
在WEB-INF/ jsp目录中创建hello.jsp , 视图可以直接取出并展示从Controller带回的信息;
可以通过EL表达式取出Model中存放的值,或者对象;
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>SpringMVC</title>
</head>
<body>
${msg}
</body>
</html>
7、配置Tomcat,测试运行
这里配置时打包war包时的类型如果是Web Application:Exploded则实际运行环境在当前项目的out文件夹里,如果为Web Application:Archive则实际运行环境在tomcat的webapps里的项目。
配置Tomcat ,开启服务器 , 访问对应的请求路径!(记得项目结构添加lib导入所以依赖包)
小结,springMVC实现步骤:
使用springMVC必须配置的三大件:处理器映射器、处理器适配器、视图解析器。通常,我们只需要手动配置视图解析器,而处理器映射器和处理器适配器只需要开启注解驱动即可,而省去了大段的xml配置
控制器提供访问应用程序的行为,通常通过接口定义或注解定义两种方法实现。
控制器负责解析用户的请求并将其转换为一个模型。
比如ControllerTest1 类实现Controller 接口,即为一个控制器
public class ControllerTest1 implements Controller {
public ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
//业务代码
//获取请求数据,调用业务数据库
//封装响应数据
//请求转发/重定向到指定jsp资源
}
}
但是!!!
实现接口Controller定义控制器是较老的办法。缺点是:一个控制器中只有一个方法,如果要多个方法则需要定义多个Controller,定义的方式比较麻烦
<context:component-scan base-package="com.liqingfeng.controller"/>
比如如下HelloController类利用@Controller注解实现控制器,
当请求url为http://localhost:8080/Springmvc_anotation/HelloController/hello
时,即会执行sayHello方法
@Controller
@RequestMapping("/HelloController")
public class HelloController {
//真实访问地址 : 项目名/HelloController/hello
@RequestMapping("/hello")
public String sayHello(Model model){
//Spring MVC会自动实例化一个Model对象用于向视图中传值
//向模型中添加属性msg与值,可以在JSP页面中取出并渲染
model.addAttribute("msg","hello,SpringMVC");
//返回视图位置:WEB-INF/jsp/hello.jsp
return "hello";
}
}
注解方式是平时使用的最多的方式!
访问路径:http://localhost:8080/Springmvc_anotation/hello
即可执行到sayHello方法
@Controller
public class HelloController {
@RequestMapping("/hello")
public String sayHello(Model model){
model.addAttribute("msg","hello,SpringMVC");
return "hello";
}
}
访问路径:http://localhost:8080/Springmvc_anotation/HelloController/hello
即可执行到sayHello方法
@Controller
@RequestMapping("/HelloController")
public class HelloController {
@RequestMapping("/hello")
public String sayHello(Model model){
model.addAttribute("msg","hello,SpringMVC");
return "hello";
}
}
例如:
@RequestMapping(value="/hello",method = RequestMethod.GET)
与@GetMapping("/hello")
等价
@RequestMapping(value="/hello",method = RequestMethod.POST)
与@PostMapping("/hello")
等价
Restful就是一个资源定位及资源操作的风格。不是标准也不是协议,只是一种风格。基于这个风格设计的软件可以更简洁,更有层次,更易于实现缓存等机制。
通过不同的参数来实现不同的效果!方法单一,post 和 get
http://127.0.0.1/item/queryItem.action?id=1
查询,GEThttp://127.0.0.1/item/saveItem.action
新增,POSThttp://127.0.0.1/item/updateItem.action
更新,POSThttp://127.0.0.1/item/deleteItem.action?id=1
删除,GET或POST可以通过不同的请求方式来实现不同的效果!如下:请求地址一样,但是功能可以不同!
http://127.0.0.1/item/1
查询,GEThttp://127.0.0.1/item
新增,POSThttp://127.0.0.1/item
更新,PUThttp://127.0.0.1/item/1
删除,DELETE在com.liqingfeng.controller包下新建一个RestFulController类
@PathVariable注解功能:请求模板restful/{i}/{s}
的参数名与方法参数名保证对应(名称一样)
@Controller
public class RestFulController {
@RequestMapping("restful/{i}/{s}")
public String test1(@PathVariable int i,@PathVariable String s, Model model){
String result = i + s;
model.addAttribute("msg",result);
return "hello";
}
}
请求路径:http://localhost:8080/Springmvc_anotation/restful/520/YZJ
用路径变量的好处? restful/{i}/{s}
不同的请求方式可以在url相同的情况下执行不同的方法
请求方式包括:GET, POST, HEAD, OPTIONS, PUT, PATCH, DELETE, TRACE等
测试
RestFulController类下添加两个方法,这个方法请求url一样,但是请求方式不一样
@RequestMapping(value = "restful/{s}",method = RequestMethod.GET)
public String test2(@PathVariable String s, Model model){
model.addAttribute("msg",s+"get方式请求");
return "hello";
}
@PostMapping("restful/{s}")
public String test3(@PathVariable String s, Model model){
model.addAttribute("msg",s+"post方式请求");
return "hello";
}
在浏览器输入url(请求方式为get):http://localhost:8080/Springmvc_anotation/restful/L
发现由于通过浏览器发起请求,为get请求,虽然test2和test3方法的请求url一样,但是由于test2方法为get请求,所以执行的是test2方法
页面资源地址 : {视图解析器前缀} + view名称 +{视图解析器后缀}
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
id="internalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
bean>
对应的controller类
public class HelloController implements Controller {
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
//ModelAndView 模型和视图
ModelAndView modelAndView = new ModelAndView();
//封装对象,放在ModelAndView中。Model
modelAndView.addObject("msg","HelloSpringMVC!");
//封装要跳转的视图,放在ModelAndView中
modelAndView.setViewName("hello"); //: /WEB-INF/jsp/hello.jsp
return modelAndView;
}
}
通过设置ServletAPI , 无需视图解析器
重定向由于需要指定web项目路径,而且不允许访问WEB-INF下的文件,所以这里用index.jsp展示,会重定向到http://localhost:8080/Springmvc_anotation/index.jsp
(地址栏发生改变)
@Controller
public class ApiController {
@GetMapping("/api/t1")
public void test1(HttpServletRequest req, HttpServletResponse rsp) throws Exception {
//请求转发
req.setAttribute("msg","通过HttpServletRequest向request域中放数据");
req.getRequestDispatcher("/WEB-INF/jsp/hello.jsp").forward(req,rsp);
}
@GetMapping("/api/t2")
public void test2(HttpServletRequest req, HttpServletResponse rsp) throws Exception {
//重定向
//重定向不能通过request域存放数据
req.getSession().setAttribute("msg","通过HttpServletResponse实现重定向");
rsp.sendRedirect("/Springmvc_anotation/index.jsp");
}
}
通过SpringMVC注解来实现转发和重定向,没有视图解析器的情况
测试前,需要将视图解析器配置注释掉,如下
@Controller
public class SpringmvcController {
@GetMapping("/mvc/t1")
public String test1(){
//请求转发方式一(默认情况下即请求转发)
return "/WEB-INF/jsp/hello.jsp";
}
@GetMapping("/mvc/t2")
public String test2(){
//请求转发方式二(显示定义为请求转发)
return "forward:/WEB-INF/jsp/hello.jsp";
}
@GetMapping("/mvc/t3")
public String test3(){
//重定向(显示定义为重定向)
//重定向到http://localhost:8080/Springmvc_anotation/index.jsp
//这里重定向不需要加web项目名/Springmvc_anotation
return "redirect:/index.jsp";
}
}
通过SpringMVC注解来实现转发和重定向,有视图解析器的情况
重定向 , 不需要视图解析器 , 本质就是重新请求一个新地方嘛 , 所以注意路径问题
@GetMapping("/mvc/t4")
public String test4(){
//请求转发方式一
return "hello";
}
@GetMapping("/mvc/t5")
public String test5(){
//重定向到http://localhost:8080/Springmvc_anotation/index.jsp
return "redirect:/index.jsp";
// return "redirect:/hello.do"; //也可以重定向到另一个请求:http://localhost:8080/Springmvc_anotation/hello.do
}
url中提交的参数名和处理方法的参数名一致
提交url数据 : http://localhost:8080/Springmvc_anotation/t6?name=LQF
处理方法 :
@GetMapping("/t6")
public String test6(String name){
System.out.println(name);
return "hello";
}
后台输出 : LQF
url中提交的参数名和处理方法的参数名不一致
提交url数据 :http://localhost:8080/Springmvc_anotation/t7?username=LQF
处理方法 :
@RequestParam(“username”) : username是url中提交的参数名,一致参数name才能获取其值,而且前端必须传递username属性和值,不然报错
//@RequestParam("username") : username提交的域的名称
@GetMapping("/t7")
public String test7(@RequestParam("username") String name){
System.out.println(name);
return "hello";
}
后台输出 : LQF
url中提交的参数是一个对象
要求url中提交的参数名和对象的属性名一致 , 方法的参数使用对象即可
所需实体类
public class User {
private int id;
private String name;
private int age;
//构造
//get/set
//tostring()
}
提交url数据 : http://localhost:8080/Springmvc_anotation/t8?id=1&name=LQF&age=20
处理方法 :
@GetMapping("/t8")
public String test8(User user){
System.out.println(user);
return "hello";
}
后台输出 : User{id=1, name=‘LQF’, age=20}
说明:如果使用对象的话,前端请求传递的参数名和方法对象中的属性名必须一致,否则对应的属性名值为null
第一种 : 通过ModelAndView
通过ModelAndView的addObject方法向request域中放数据,然后请求转发到前端
public class HelloController implements Controller {
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("msg","HelloSpringMVC!");
modelAndView.setViewName("hello"); //: /WEB-INF/jsp/hello.jsp
return modelAndView;
}
}
第二种 : 通过ModelMap
http://localhost:8080/Springmvc_anotation/t9?username=LQF
@RequestMapping("/t9")
public String test9(@RequestParam("username") String name, ModelMap modelmap){
//封装要显示到视图中的数据
//相当于req.setAttribute("msg",name);
modelmap.addAttribute("msg",name);
System.out.println(name);
return "hello";
}
第三种 : 通过Model
http://localhost:8080/Springmvc_anotation/t10?username=LQF
@RequestMapping("/t10")
public String hello(@RequestParam("username") String name, Model model){
//封装要显示到视图中的数据
//相当于req.setAttribute("name",name);
model.addAttribute("msg",name);
System.out.println(name);
return "hello";
}
对比
测试步骤:
1、我们可以在首页编写一个提交的表单
<form action="${pageContext.request.contextPath}/t11" method="post">
<input type="text" name="name">
<input type="submit">
form>
2、后台编写对应的处理方法
@PostMapping("/t11")
public String test(Model model,String name){
model.addAttribute("msg",name); //获取表单提交的值
return "hello"; //跳转到hello页面显示输入的值
}
3、输入中文测试
4.发现乱码
后台输出:???é??é??
以前乱码问题我们是通过自定义类实现filtter过滤器解决 , 而SpringMVC给我们提供了一个过滤器 , 可以在web.xml中配置 ,直接用就行
<filter>
<filter-name>encodingfilter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>
<init-param>
<param-name>encodingparam-name>
<param-value>utf-8param-value>
init-param>
filter>
<filter-mapping>
<filter-name>encodingfilter-name>
<url-pattern>/*url-pattern>
filter-mapping>
但是我们发现 , 有些极端情况下.这个过滤器对get的支持不好
处理方法 :
1、修改tomcat的setting配置文件 :设置编码!
<Connector URIEncoding="utf-8" port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
2、自定义过滤器
package com.liqingfeng.filter;
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.Map;
/**
* 解决get和post请求 全部乱码的过滤器
*/
public class GenericEncodingFilter implements Filter {
@Override
public void destroy() {
}
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
//处理response的字符编码
HttpServletResponse myResponse=(HttpServletResponse) response;
myResponse.setContentType("text/html;charset=UTF-8");
// 转型为与协议相关对象
HttpServletRequest httpServletRequest = (HttpServletRequest) request;
// 对request包装增强
HttpServletRequest myrequest = new MyRequest(httpServletRequest);
chain.doFilter(myrequest, response);
}
@Override
public void init(FilterConfig filterConfig) throws ServletException {
}
}
//自定义request对象,HttpServletRequest的包装类
class MyRequest extends HttpServletRequestWrapper {
private HttpServletRequest request;
//是否编码的标记
private boolean hasEncode;
//定义一个可以传入HttpServletRequest对象的构造函数,以便对其进行装饰
public MyRequest(HttpServletRequest request) {
super(request);// super必须写
this.request = request;
}
// 对需要增强方法 进行覆盖
@Override
public Map getParameterMap() {
// 先获得请求方式
String method = request.getMethod();
if (method.equalsIgnoreCase("post")) {
// post请求
try {
// 处理post乱码
request.setCharacterEncoding("utf-8");
return request.getParameterMap();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
} else if (method.equalsIgnoreCase("get")) {
// get请求
Map<String, String[]> parameterMap = request.getParameterMap();
if (!hasEncode) { // 确保get手动编码逻辑只运行一次
for (String parameterName : parameterMap.keySet()) {
String[] values = parameterMap.get(parameterName);
if (values != null) {
for (int i = 0; i < values.length; i++) {
try {
// 处理get乱码
values[i] = new String(values[i]
.getBytes("ISO-8859-1"), "utf-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}
}
hasEncode = true;
}
return parameterMap;
}
return super.getParameterMap();
}
//取一个值
@Override
public String getParameter(String name) {
Map<String, String[]> parameterMap = getParameterMap();
String[] values = parameterMap.get(name);
if (values == null) {
return null;
}
return values[0]; // 取回参数的第一个值
}
//取所有值
@Override
public String[] getParameterValues(String name) {
Map<String, String[]> parameterMap = getParameterMap();
String[] values = parameterMap.get(name);
return values;
}
}
然后在web.xml中配置这个过滤器即可!
在 JavaScript 语言中,一切都是对象。因此,任何JavaScript 支持的类型都可以通过 JSON 来表示,例如字符串、数字、对象、数组等。看看他的要求和语法格式:
JSON 字符串是用来保存 JavaScript 对象的一种方式,和 JavaScript 对象的写法也大同小异,键/值对组合中的键名写在前面并用双引号 “” 包裹,使用冒号 : 分隔,然后紧接着值:
//json字符串
{"name": "QinJiang"}
{"age": "3"}
{"sex": "男"}
很多人搞不清楚 JSON 和 JavaScript 对象的关系,甚至连谁是谁都不清楚。其实,可以这么理解:JSON是JS对象的字符串表示法,它使用文本表示一个 JS 对象的信息,本质是一个字符串。
var obj = {a: 'Hello', b: 'World'}; //这是一个js对象,注意键名也是可以使用引号包裹的
var json = '{"a": "Hello", "b": "World"}'; //这是一个 JSON 字符串,本质是一个字符串
JSON 和 JavaScript 对象互转
要实现从JSON字符串转换为JavaScript 对象,使用 JSON.parse() 方法:
var obj = JSON.parse('{"a": "Hello", "b": "World"}');
//结果是 {a: 'Hello', b: 'World'}
要实现从JavaScript 对象转换为JSON字符串,使用 JSON.stringify() 方法:
var json = JSON.stringify({a: 'Hello', b: 'World'});
//结果是 '{"a": "Hello", "b": "World"}'
现在,我们利用后端Controller控制器响应JSON数据。
Jackson应该是目前比较好的json解析工具了
1.新建普通maven项目工程 ,添加web框架支持,导入依赖以及资源过滤问题
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.12version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.9version>
dependency>
<dependency>
<groupId>javax.servletgroupId>
<artifactId>javax.servlet-apiartifactId>
<version>4.0.1version>
dependency>
<dependency>
<groupId>javax.servlet.jspgroupId>
<artifactId>javax.servlet.jsp-apiartifactId>
<version>2.3.3version>
dependency>
<dependency>
<groupId>javax.servlet.jsp.jstlgroupId>
<artifactId>jstl-apiartifactId>
<version>1.2version>
dependency>
dependencies>
<build>
<resources>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
<resource>
<directory>src/main/resourcesdirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
resources>
build>
我们这里使用Jackson,所以还需要导入它的jar包;
<dependency>
<groupId>com.fasterxml.jackson.coregroupId>
<artifactId>jackson-databindartifactId>
<version>2.9.8version>
dependency>
2.web.xml配置
<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>SpringMVCservlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
<init-param>
<param-name>contextConfigLocationparam-name>
<param-value>classpath:springmvc-servlet.xmlparam-value>
init-param>
<load-on-startup>1load-on-startup>
servlet>
<servlet-mapping>
<servlet-name>SpringMVCservlet-name>
<url-pattern>/url-pattern>
servlet-mapping>
<filter>
<filter-name>encodingfilter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>
<init-param>
<param-name>encodingparam-name>
<param-value>utf-8param-value>
init-param>
filter>
<filter-mapping>
<filter-name>encodingfilter-name>
<url-pattern>/*url-pattern>
filter-mapping>
web-app>
3.springmvc-servlet.xml
<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.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
https://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.liqingfeng.controller"/>
<mvc:default-servlet-handler />
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
id="internalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
bean>
beans>
4.编写实体类,Controller控制器类
public class User {
private String name;
private int age;
private String sex;
//无参、全参构造器
//set/get方法
//tostring方法
}
package com.liqingfeng.controller;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.liqingfeng.pojo.User;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class UserController {
@GetMapping(value = "/json1")
@ResponseBody
public String json1() throws JsonProcessingException {
//创建一个jackson的对象映射器,用来解析数据
ObjectMapper objectMapper = new ObjectMapper();
//将我们的对象解析成为json字符串
String str = objectMapper.writeValueAsString(new User("唐三", 20, "男"));
//由于@ResponseBody注解,这里会将str直接返回到请求当前页面
System.out.println(str);
return str;
}
}
5.配置Tomcat , 启动测试一下(记得添加lib导入所有jar包,很重要!!!)
请求rul:http://localhost:8080/Json/json1
发现出现了乱码问题,我们需要设置一下他的编码格式为utf-8,以及它返回的类型,通过produces = "application/json;charset=utf-8")
//produces:指定响应体返回类型和编码
@GetMapping(value = "/json1", produces = "application/json;charset=utf-8")
上一种通过produces = "application/json;charset=utf-8")
处理乱码问题比较麻烦,如果项目中有许多请求则每一个都要添加,可以通过Spring配置统一指定,这样就不用每次都去处理了!
我们可以在springmvc的配置文件上添加一段消息StringHttpMessageConverter转换配置!
<mvc:annotation-driven>
<mvc:message-converters register-defaults="true">
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<constructor-arg value="UTF-8"/>
bean>
<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">
<property name="failOnEmptyBeans" value="false"/>
bean>
property>
bean>
mvc:message-converters>
mvc:annotation-driven>
再通过 @GetMapping( "/json1")
,不设置:produces = "application/json;charset=utf-8"
,测试结果OK
在类上直接使用 @RestController ,则该类里面所有的方法都只会返回结果到请求的本页面,不用再每一个方法都添加@ResponseBody !我们在前后端分离开发中,一般都使用 @RestController ,十分便捷!
@RestController
public class RtController {
@GetMapping(value = "/json2")
public String json2() throws JsonProcessingException {
//创建一个jackson的对象映射器,用来解析数据
ObjectMapper objectMapper = new ObjectMapper();
//将我们的对象解析成为json字符串
String str = objectMapper.writeValueAsString(new User("唐三", 20, "女"));
//由于@ResponseBody注解,这里会将str直接返回到请求当前页面
System.out.println(str);
return str;
}
}
启动tomcat测试,OK!
@RestController
public class RtController {
@GetMapping("/json3")
public String json3() throws JsonProcessingException {
//创建一个jackson的对象映射器,用来解析数据
ObjectMapper objectMapper = new ObjectMapper();
//创建一个对象
User user1 = new User("唐三", 20, "男");
User user2 = new User("小舞", 20, "女");
User user3 = new User("荣荣", 20, "女");
User user4 = new User("胖子", 20, "男");
List<User> list = new ArrayList<User>();
list.add(user1);
list.add(user2);
list.add(user3);
list.add(user4);
//将我们的集合对象解析成为json字符串
String str = objectMapper .writeValueAsString(list);
return str;
}
}
@RestController
public class RtController {
@GetMapping("/json4")
public String json4() throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
//创建时间一个对象,java.util.Date
Date date = new Date();
//将我们的对象解析成为json字符串
String str = mapper.writeValueAsString(date);
return str;
}
}
解决方案一:利用SimpleDateFormat进行时间格式转换
@RestController
public class RtController {
@GetMapping("/json5")
public String json5() throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
//创建时间一个对象,java.util.Date
Date date = new Date();
//按照指定时间格式输出
String date_format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date);
//将我们的对象解析成为json字符串
String str = mapper.writeValueAsString(date_format);
return str;
}
}
解决方案二:取消timestamps形式 , 自定义时间格式
@RestController
public class RtController {
@GetMapping("/json6")
public String json6() throws JsonProcessingException {
ObjectMapper objectMapper = new ObjectMapper();
//不使用时间戳的方式
objectMapper .configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
//指定日期格式
objectMapper .setDateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));
Date date = new Date();
String str = objectMapper .writeValueAsString(date);
return str;
}
}
astjson.jar是阿里开发的一款专门用于Java开发的包,可以方便的实现json对象与JavaBean对象的转换,实现JavaBean对象与json字符串的转换,实现json对象与json字符串的转换
fastjson 的依赖jar包
<dependency>
<groupId>com.alibabagroupId>
<artifactId>fastjsonartifactId>
<version>1.2.62version>
dependency>
fastjson 三个主要的类:
测试:
public void test(){
//创建一个对象
User user1 = new User("唐三1号", 11, "男");
User user2 = new User("唐三2号", 13, "女");
User user3 = new User("唐三3号", 15, "男");
User user4 = new User("唐三4号", 17, "女");
List<User> list = new ArrayList<User>();
list.add(user1);
list.add(user2);
list.add(user3);
list.add(user4);
System.out.println("*******1.Java集合对象 -> JSON字符串*******");
System.out.println(JSON.toJSONString(list));
System.out.println("*******2.Java对象 -> JSON字符串*******");
System.out.println(JSON.toJSONString(user1));
System.out.println("*******3.JSON字符串 -> Java对象*******");
System.out.println(JSON.parseObject(JSON.toJSONString(user1),User.class));
System.out.println("*******4.Java对象 -> JSON对象 ******");
JSONObject jsonObject = (JSONObject) JSON.toJSON(user2);
System.out.println(jsonObject);
System.out.println("*******5.JSON对象 -> Java对象 ******");
System.out.println(JSON.toJavaObject(jsonObject, User.class));
}
Json在我们数据传输中十分重要,一定要学会使用!
在 2005 年,Google 通过其 Google Suggest 使 AJAX 变得流行起来。Google Suggest能够自动帮你完成搜索单词。 Google Suggest 使用 AJAX 创造出动态性极强的 web 界面:当您在谷歌的搜索框输入关键字时,JavaScript会把这些字符发送到服务器,然后服务器会返回一个搜索建议的列表就和国内百度的搜索框一样。
传统的网页(即不用ajax技术的网页),想要更新内容或者提交一个表单,都需要重新加载整个网页。使用ajax技术的网页,通过在后台服务器进行少量的数据交换,不需要刷新整个页面就可以实现异步局部更新。 使用Ajax,用户可以创建接近本地桌面应用的直接、高可用、更丰富、更动态的Web用户界面。
利用AJAX可以做:
jQuery.ajax(...)
部分参数:
url:请求地址
type:请求方式,GET、POST(1.9.0之后用method)
headers:请求头
data:服务器响应的数据
contentType:即将发送信息至服务器的内容编码类型(默认: "application/x-www-form-urlencoded; charset=UTF-8")
async:是否异步
timeout:设置请求超时时间(毫秒)
beforeSend:发送请求前执行的函数(全局)
complete:完成之后执行的回调函数(全局)
success:成功之后执行的回调函数(全局)
error:失败之后执行的回调函数(全局)
accepts:通过请求头发送给服务器,告诉服务器当前客户端可接受的数据类型
dataType:将服务器端返回的数据转换成指定类型
"xml": 将服务器端返回的内容转换成xml格式
"text": 将服务器端返回的内容转换成普通文本格式
"html": 将服务器端返回的内容转换成普通文本格式,在插入DOM中时,如果包含JavaScript标签,则会尝试去执行。
"script": 尝试将返回值当作JavaScript去执行,然后再将服务器端返回的内容转换成普通文本格式
"json": 将服务器端返回的内容转换成相应的JavaScript对象
"jsonp": JSONP 格式使用 JSONP 形式调用函数时,如 "myurl?callback=?" jQuery 将自动替换 ? 为正确的函数名,以执行回调函数
测试:
1.新建AjaxController类
@RestController
public class AjaxController {
@GetMapping("/ajax1")
public String ajax1(@RequestParam("name") String name){
if(name.equals("admin"))
{
return "true";
}else{
return "false";
}
}
}
2.新建Ajax1.jsp
导入jQuery包,可以使用线上的
<script src="https://code.jquery.com/jquery-3.1.1.min.js">script>
也可以使用下载好的包
<script src="${pageContext.request.contextPath}/statics/js/jquery-3.1.1.min.js">script>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>$Title$title>
<script src="https://code.jquery.com/jquery-3.1.1.min.js">script>
<script>
function a1(){
$.post({
url:"${pageContext.request.contextPath}/ajax1",
data:{'name':$("#txtName").val()},
success:function (data) {
$("#spanHtml").html(data);
}
});
}
script>
head>
<body>
<%--onblur:失去焦点触发事件--%>
用户名:<input type="text" id="txtName" onblur="a1()"/> <span id="spanHtml">span>
body>
html>
3、启动tomcat测试!打开浏览器的控制台,当我们输入admin鼠标离开输入框的时候,可以看到发出了一个ajax的请求(xhr请求)!是后台返回给我们的结果,测试成功!
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Titletitle>
head>
<body>
<input type="button" id="btn" value="获取数据"/>
<table width="80%" align="center">
<tr>
<td>姓名td>
<td>年龄td>
<td>性别td>
tr>
<tbody id="content"> tbody>
table>
<script src="https://code.jquery.com/jquery-3.1.1.min.js">script>
<script>
$(function () {
$("#btn").click(function () {
$.post("${pageContext.request.contextPath}/ajax2",function (data) {
var html="";
for (let i = 0; i <data.length ; i++) {
html+= "" +
"" + data[i].name + " " +
"" + data[i].age + " " +
"" + data[i].sex + " " +
" "
}
$("#content").html(html);
});
<%--$.ajax({--%>
<%-- url:"${pageContext.request.contextPath}/ajax2",--%>
<%-- success:function (data) {--%>
<%-- var html="";--%>
<%-- for (let i = 0; i <data.length ; i++) {--%>
<%-- html+= "" +--%>
<%-- "" + data[i].name + " " +--%>
<%-- "" + data[i].age + " " +--%>
<%-- "" + data[i].sex + " " +--%>
<%-- " "--%>
<%-- }--%>
<%-- $("#content").html(html);--%>
<%-- }--%>
<%--});--%>
})
})
script>
body>
html>
其中$.ajax
是$.post
和$.get
的结合,但是$.ajax
默认是get请求提交,所以日常我们就使用$post
和$.get
两种方式来处理ajax请求
在做一个练习:
@PostMapping("/ajax3")
public String ajax3(@RequestParam("name") String name){
System.out.println(name);
String msg = "";
//模拟数据库中存在数据
if (!name.isEmpty()){
if ("admin".equals(name)){
msg = "OK";
}else {
msg = "用户名输入错误";
}
}
return msg;
}
@PostMapping("/ajax4")
public String ajax4(@RequestParam("pwd")String pwd){
System.out.println(pwd);
String msg = "";
//模拟数据库中存在数据
if (!pwd.isEmpty()){
if ("123456".equals(pwd)){
msg = "OK";
}else {
msg = "密码输入错误";
}
}
return msg;
}
Ajax3.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>ajaxtitle>
<script src="https://code.jquery.com/jquery-3.1.1.min.js">script>
head>
<body>
<p>
用户名:<input type="text" id="name" onblur="a1()"/>
<span id="userInfo">span>
p>
<p>
密码:<input type="text" id="pwd" onblur="a2()"/>
<span id="pwdInfo">span>
p>
<script>
function a1(){
$.post({
url:"${pageContext.request.contextPath}/ajax3",
data:{'name':$("#name").val()},
success:function (data) {
if (data.toString()=='OK'){
$("#userInfo").css("color","green");
}else {
$("#userInfo").css("color","red");
}
$("#userInfo").html(data);
}
});
}
function a2(){
$.post({
url:"${pageContext.request.contextPath}/ajax4",
data:{'pwd':$("#pwd").val()},
success:function (data) {
if (data.toString()=='OK'){
$("#pwdInfo").css("color","green");
}else {
$("#pwdInfo").css("color","red");
}
$("#pwdInfo").html(data);
}
});
}
script>
body>
html>
过滤器
拦截器
自定义拦截器,必须实现 HandlerInterceptor 接口。
1、编写一个拦截器
package com.liqingfeng.interceptor;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class MyInterceptor implements HandlerInterceptor {
//在请求处理的方法之前执行
//如果返回true则放行,和过滤器的chain.doFilter()放行一样
//如果返回false就不放行
public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o) throws Exception {
System.out.println("------------处理前------------");
return true;
}
//在请求处理方法执行之后执行
public void postHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, ModelAndView modelAndView) throws Exception {
System.out.println("------------处理后------------");
}
//在dispatcherServlet处理后执行,做清理工作.
public void afterCompletion(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) throws Exception {
System.out.println("------------清理------------");
}
}
2、在springmvc的配置文件中配置拦截器
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/admin/**"/>
<bean class="com.liqingfeng.interceptor.MyInterceptor"/>
mvc:interceptor>
mvc:interceptors>
3、编写一个Controllerf方法,接收请求
@RequestMapping("/admin/interceptor")
@ResponseBody
public String testFunction() {
System.out.println("控制器中的方法执行了");
return "hello";
}
4、测试,输入url:http://localhost:8080/Json/admin/interceptor
1、编写一个登陆页面 login.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Titletitle>
head>
<h1>登录页面h1>
<hr>
<body>
<form action="${pageContext.request.contextPath}/user/login">
用户名:<input type="text" name="username"> <br>
密码:<input type="password" name="pwd"> <br>
<input type="submit" value="提交">
form>
body>
html>
2、编写一个Controller类处理请求
@Controller
public class UserLoginController{
//跳转到登陆页面
@RequestMapping("/user/jumplogin")
public String jumpLogin() throws Exception {
return "login";
}
//跳转到主页页面
@RequestMapping("/user/jumpSuccess")
public String jumpSuccess() throws Exception {
return "success";
}
//登陆提交
@RequestMapping("/user/login")
public String login(HttpSession session, String username, String pwd) throws Exception {
// 向session记录用户身份信息
System.out.println("接收前端==="+username);
session.setAttribute("user", username);
return "success";
}
//退出登陆
@RequestMapping("/user/logout")
public String logout(HttpSession session) throws Exception {
// 删除保存在session中的user属性及值
session.removeAttribute("user");
return "login";
}
}
3、编写一个登陆成功的页面 success.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Titletitle>
head>
<body>
<h1>登录成功页面h1>
<hr>
<h1>欢迎您,${user}h1>
<a href="${pageContext.request.contextPath}/user/logout">注销a>
<a href="${pageContext.request.contextPath}/index.jsp">首页a>
body>
html>
4、在 index 页面上测试跳转!启动Tomcat 测试,未登录也可以进入主页!
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>$Title$title>
head>
<body>
<h1>首页h1>
<hr>
<%--登录--%>
<a href="${pageContext.request.contextPath}/user/jumplogin">登录a>
<a href="${pageContext.request.contextPath}/user/jumpSuccess">主页a>
body>
html>
5、编写用户登录拦截器
public class LoginInterceptor implements HandlerInterceptor {
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws ServletException, IOException {
// 如果是登陆页面则放行
System.out.println("uri: " + request.getRequestURI());
if (request.getRequestURI().contains("login")) {
return true;
}
// 如果用户已登陆也放行
if(request.getSession().getAttribute("user") != null) {
return true;
}
// 用户没有登陆跳转到登陆页面
request.getRequestDispatcher("/WEB-INF/jsp/login.jsp").forward(request, response);
return false;
}
public void postHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, ModelAndView modelAndView) throws Exception {
}
public void afterCompletion(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) throws Exception {
}
}
6、在Springmvc的配置文件中注册拦截器
<!--关于拦截器的配置-->
<mvc:interceptors>
<mvc:interceptor>
<!--拦截:web项目/user/下的所有控制器方法-->
<mvc:mapping path="/**"/>
<bean id="loginInterceptor" class="com.liqingfeng.interceptor.LoginInterceptor"/>
</mvc:interceptor>
</mvc:interceptors>
7、再次重启Tomcat测试,OK!(直接点主页,会因为拦截器查询用户session不存在,请求转发到login.jsp页面,若登录后,点击提交则跳转到success.jsp页面,然后在不注销的情况下,退后到首页再点击主页就可以进入success.jsp页面,如果注销用户session,那么再点击主页就不能跳到success.jsp页面)
对表单中的 enctype 属性做个详细的说明:
<form action="" enctype="multipart/form-data" method="post">
<input type="file" name="file"/>
<input type="submit">
form>
一旦设置了enctype为multipart/form-data,浏览器即会采用二进制流的方式来处理表单数据,而对于文件上传的处理则涉及在服务器端解析原始的HTTP响应。在2003年,Apache Software Foundation发布了开源的Commons FileUpload组件,其很快成为Servlet/JSP程序员上传文件的最佳选择。
方式一(较复杂)
1、导入文件上传的jar包:commons-fileupload , Maven会自动帮我们导入他的依赖包 (commons-io包)
<dependency>
<groupId>commons-fileuploadgroupId>
<artifactId>commons-fileuploadartifactId>
<version>1.3.3version>
dependency>
2、springMVC核心配置文件springmvc-servlet.xml配置MultipartResolver
注意!!!这个bena的id必须为:multipartResolver , 否则上传文件会报400的错误!
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="defaultEncoding" value="utf-8"/>
<property name="maxUploadSize" value="10485760"/>
<property name="maxInMemorySize" value="40960"/>
bean>
3、编写fileupload.jsp前端页面
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Titletitle>
head>
<body>
<form action="${pageContext.request.contextPath}/upload" enctype="multipart/form-data" method="post">
<input type="file" name="file"/>
<input type="submit" value="upload">
form>
body>
html>
4、Controller
CommonsMultipartFile类的常用方法:
package com.liqingfeng.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import javax.servlet.http.HttpServletRequest;
import java.io.*;
@Controller
public class FileController {
//@RequestParam("file") 将name=file控件得到的文件封装成CommonsMultipartFile 对象
//批量上传CommonsMultipartFile则为数组即可
@RequestMapping("/upload")
public String fileUpload(@RequestParam("file") CommonsMultipartFile file , HttpServletRequest request) throws IOException {
//获取文件名 : file.getOriginalFilename();
String uploadFileName = file.getOriginalFilename();
//如果文件名为空,直接回到首页!
if ("".equals(uploadFileName)){
return "redirect:/index.jsp";
}
System.out.println("上传文件名 : "+uploadFileName);
//上传路径保存设置
String path = request.getServletContext().getRealPath("/upload");
//如果路径不存在,创建一个
File realPath = new File(path);
if (!realPath.exists()){
realPath.mkdir();
}
System.out.println("上传文件保存地址:"+realPath);
InputStream is = file.getInputStream(); //文件输入流
OutputStream os = new FileOutputStream(new File(realPath,uploadFileName)); //文件输出流
//读取写出
int len=0;
byte[] buffer = new byte[1024];
while ((len=is.read(buffer))!=-1){
os.write(buffer,0,len);
os.flush();
}
os.close();
is.close();
return "redirect:/index.jsp";//不能返回null,上传后必须得返回一个页面(比如上传成功页面)
}
}
5、测试上传文件,OK!(记得再tomcat中lib导入刚刚的依赖包commons-fileupload.jar
方式二(较简单,推荐)
1、在FileController类上添加Controller控制器方法
/*
* 采用file.Transto 来保存上传的文件
*/
@RequestMapping("/upload2")
public String fileUpload2(@RequestParam("file") CommonsMultipartFile file, HttpServletRequest request) throws IOException {
//上传路径保存设置
String path = request.getServletContext().getRealPath("/upload");
File realPath = new File(path);
if (!realPath.exists()){
realPath.mkdir();
}
//上传文件地址
System.out.println("上传文件保存地址:"+realPath);
//通过CommonsMultipartFile的方法直接写文件(注意这个时候)
file.transferTo(new File(realPath +"/"+ file.getOriginalFilename()));
return "redirect:/index.jsp";//不能返回null,上传后必须得返回一个页面(比如上传成功页面)
}
2、前端表单提交地址修改
<form action="${pageContext.request.contextPath}/upload2" enctype="multipart/form-data" method="post">
3、访问提交测试,OK!
文件下载步骤:
设置 response 响应头
@RequestMapping("/download")
public String downloads(HttpServletResponse response) throws Exception{
//要下载的图片地址
// String path = request.getServletContext().getRealPath("/upload");
String path = "C:\\Users\\秋天的思念\\Desktop";
String fileName = "RM 专属招聘通道邀请函.pdf";
//1、设置response 响应头
response.reset(); //设置页面不缓存,清空buffer
response.setCharacterEncoding("UTF-8"); //字符编码
response.setContentType("multipart/form-data"); //二进制传输数据
//设置响应头 URLEncoder.encode(fileName, "UTF-8")是防止下载的文件名乱码
response.setHeader("Content-Disposition",
"attachment;fileName="+ URLEncoder.encode(fileName, "UTF-8"));
File file = new File(path,fileName);
//2、 读取文件--输入流
InputStream input = new FileInputStream(file);
//3、 写出文件--输出流
OutputStream out = response.getOutputStream();
byte[] buff = new byte[1024];
int num = 0;//读取的有效字节数
//4、执行 写出操作
while((num = input.read(buff))!= -1){
out.write(buff, 0, num);
out.flush();
}
out.close();
input.close();
return null;//返回null是因为下载文件不需要跳转其他页面
}
filedownload.jsp页面
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Titletitle>
head>
<body>
<a href="${pageContext.request.contextPath}/download">点击下载a>
body>
html>
测试,文件下载OK,大家可以和我们之前学习的JavaWeb原生的方式对比一下,就可以知道这个便捷多了!