JAVAEE框架技术之5-springMVC参数绑定和异步交互
Posted teayear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVAEE框架技术之5-springMVC参数绑定和异步交互相关的知识,希望对你有一定的参考价值。
数据绑定
springmvc作为web层技术,要接受页面传递过来的参数值,以下几种方式都是获取参数值
绑定servlet内置对象
@RequestMapping("show1")
@ResponseStatus(HttpStatus.OK) //返回void 没有页面返回,给出响应状态为200
public void test1(HttpServletRequest request , HttpServletResponse response , HttpSession session)
//有了这些对象,之前怎么用,这里怎么用
System.out.println(request);
System.out.println(response);
System.out.println(session);
@PathVariable
@RequestMapping(“show2/id/name”)
@PathVariable(“id”) 指定获取请求路径中的参数值
@RequestMapping("show2/id/name")//@PathVariable("xx")参数可以省略,建议指定获取
public String test2(@PathVariable int id ,@PathVariable String name)
System.out.println("id:"+id);
System.out.println("name:"+name);
//返回String
return "hello";//可以直接跳到视图解析器下找hello.jsp
@RequestParam
属性名 | 属性值 |
---|---|
value | 参数名 |
required | true(默认) false |
defaultValue | 默认值,如果不给参数值,就走默认值 |
- 普通serlvet获取参数值
//通过绑定servlet对象,获取请求参数
@RequestMapping("show3")
@ResponseStatus(HttpStatus.OK)
public void test3(HttpServletRequest request)
System.out.println(request.getParameter("id"));
System.out.println(request.getParameter("name"));
- @RequestParam获取参数值
/**
* 获取请求携带的参数 show4.do?id=33&name=jack
* 1、@RequestParam 获取请求指定参数
* 2、value 参数据
* 3、required 参数是否必须,默认true
* true: 必须
* false:可以不写
* 4、 defaultValue 如果没有传值,默认给出一个值 defaultValue = "jack"
*/
@RequestMapping("show4")
@ResponseStatus(HttpStatus.OK)
public void test4(
@RequestParam(value = "id",required = true) int id,
@RequestParam(value = "name",required = false, defaultValue = "jack") String name )
System.out.println("id:"+id);
System.out.println("name:"+name);
@CookieValue
/**
* 通过后台跳转到cookie视图
* @return
*/
@RequestMapping("toCookie")
public ModelAndView toCookie()
ModelAndView mv = new ModelAndView();
mv.setViewName("cookie");
return mv;
/**
* 获取cookie的值
* @param name
*/
@RequestMapping("show5")
@ResponseStatus(HttpStatus.OK)
public void test5(@CookieValue(value = "name",required = false) String name)
System.out.println("cookie的值为:"+name);
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<a href="/hello/show5.do">测试cookie</a>
<script>
document.cookie = "name=jack";
</script>
</body>
</html>
POJO对象绑定参数
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
</dependency>
@Data
public class User
private Integer id;
private String name;
private Integer age;
/**
* 接收绑定的pojo对象
* @param user
* @return
*/
@RequestMapping("show6")
public ModelAndView test6(User user)
System.out.println(user);
ModelAndView mv = new ModelAndView();
mv.addObject("msg",user);
mv.setViewName("hello");
return mv;
基本数据类型绑定
/**
* 通过后台跳转到user视图
* @return
*/
@RequestMapping("toUser")
public ModelAndView toUser()
ModelAndView mv = new ModelAndView();
mv.setViewName("user");
return mv;
<form action="http://localhost:8080/springmvc-test02/hello2/show18.do" method="post">
<div>姓名:</div>
<div><input name="name" value="张三"/></div>
<div class="clear"></div>
<div>年龄:</div>
<div><input name="age" value="20"/></div>
<div class="clear"></div>
<div>收入:</div>
<div><input name="income" value="100000"/></div>
<div class="clear"></div>
<div>结婚:</div>
<div>
<input type="radio" name="isMarried" value="true" checked="checked"/>是
<input type="radio" name="isMarried" value="false"/>否</div>
<div class="clear"></div>
<div>兴趣:</div>
<div>
<input type="checkbox" name="interests" value="听歌" checked="checked"/>听歌
<input type="checkbox" name="interests" value="书法" checked="checked"/>书法
<input type="checkbox" name="interests" value="看电影" checked="checked"/>看电影
</div>
<div class="clear"></div>
<div><input type="submit" value="提交表单"/></div>
</form>
/**
* 接收基本数据类型
*/
@PostMapping("show8")
@ResponseStatus(HttpStatus.OK)
public void test7(
@RequestParam("name") String name,
@RequestParam("age") Integer age,
@RequestParam("income") Double income,
@RequestParam("isMarried") Boolean isMarried,
@RequestParam("interests") String[] interests)
System.out.println("name: "+name);
System.out.println("age: "+age);
System.out.println("income: "+income);
System.out.println("isMarried: "+isMarried);
for(String str : interests)
System.out.println("interests: "+str);
解决乱码问题
springmvc提供了编码过滤器
只解post中文乱码问题,注意解析源码
配置位置 web.xml
<!--编码过滤器-->
<filter>
<!--注意这里是filter,不要配置成servlet-->
<filter-name>encodingFilter</filter-name> <!--过滤器名称-->
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <!--过滤器的完整类名-->
<init-param> <!--初始化参数-->
<param-name>encoding</param-name> <!--参数名称-->
<param-value>utf-8</param-value> <!--参数值-->
</init-param>
</filter>
<filter-mapping> <!--过滤器映射-->
<filter-name>encodingFilter</filter-name><!--过滤器名称-->
<url-pattern>/*</url-pattern><!--URL映射,给所有页面处理乱码-->
</filter-mapping>
通用页面跳转
我们发现上面我们写了很多次页面跳转的方法,其实我们可以抽取统一
@RequestMapping("to")
@Controller
public class Topage
/**
* 通用页面跳转---视图解析器
http://localhost:8080/rest/to/hello
*/
@RequestMapping("page")
public String toPage1(@PathVariable("page") String page)
return page;
/**
* 通用页面跳转---webapp下视图--写着玩
*/
@RequestMapping("wp/page")
public String toPage2(@PathVariable("page") String page)
return "forward:/"+page+".html";
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
数组类型
<form action="/hello/show9.do" method="post">
<input type="checkbox" name="addr" value="郑州"> 郑州 <br>
<input type="checkbox" name="addr" value="上海"> 上海 <br>
<input type="checkbox" name="addr" value="杭州"> 杭州 <br>
<input type="checkbox" name="addr" value="北京"> 北京 <br>
<input type="checkbox" name="addr" value="曹县"> 曹县 <br>
<input type="submit" value="数组类型">
</form>
/**
* 接收数组
* @param addr
*/
@PostMapping("show9")
@ResponseStatus(HttpStatus.OK)
public void show9(String[] addr)
for (String str : addr)
System.out.println(str);
绑定复杂类型
如果提交的是一个集合的数据,SpringMVC的方法形参是无法接收的,我们必须通过实体类进行包装才行
@Data
public class UserVO
private String name;
private Integer age;
private User user;
private List<User> list;
private Map<String,User> map;
private String[] addr;
<form action="/hello/show10.do" method="post">
姓名: <input type="text" name="name">
年龄: <input type="text" name="age"> <br/>
user属性中的姓名:<input type="text" name="user.name"><br/>
user属性中的年龄:<input type="text" name="user.age"> <br/>
list中第一个user对象的年龄:<input type="text" name="list[0].age"> <br/>
list中第一个user对象的姓名:<input type="text" name="list[0].name"> <br/>
list中第二个user对象的年龄: <input type="text" name="list[1].age"> <br/>
list中第二个user对象的姓名: <input type="text" name="list[1].name"> <br/>
map中第一个键值对中值user对象的年龄: <input type="text" name="map['one'].age"> <br/>
map中第一个键值对中值user对象的姓名: <input type="text" name="map['one'].name"> <br/>
map中第二个键值对中值user对象的年龄: <input type="text" name="map['two'].age"> <br/>
map中第二个键值对中值user对象的姓名: <input type="text" name="map['two'].name"><br/>
请选择喜欢的城市:
<input type="checkbox" name="addr" value="郑州"> 郑州 <br>
<input type="checkbox" name="addr" value="上海"> 上海 <br>
<input type="checkbox" name="addr" value="杭州"> 杭州 <br>
<input type="checkbox" name="addr" value="北京"> 北京 <br>
<input type="checkbox" name="addr" value="曹县"> 曹县 <br>
<input type="submit" value="复杂类型">
</form>
/**
* 接受复杂类型
* @param userVO
*/
@PostMapping("show10")
@ResponseStatus(HttpStatus.OK)
public void show10(UserVO userVO)
System.out.println(userVO);
日期类型
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date birth;
jsp和jstl视图解析器
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
/**
* 把数据转发到jsp页面中进行显示
*/
@GetMapping("show20")
public ModelAndView test20()
ModelAndView mv = new ModelAndView();
Person person = new Person();
person.setId(11);
person.setName("戈尔丹");
person.setAge(22);
Person person2 = new Person();
person2.setId(11);
person2.setName("赵日天");
person2.setAge(33);
Person person3 = new Person();
person3.setId(11);
person3.setName("叶良晨");
person3.setAge(44);
List<Person> list = new ArrayList<>();
list.add(person);
list.add(person2);
list.addJAVAEE框架技术之5-springMVC参数绑定和异步交互
JAVAEE框架技术之8-myBatis ORM框架技术参数和动态SQL语句
JAVAEE框架技术之8-myBatis ORM框架技术参数和动态SQL语句