springMVC第二章数据校验和控制层传参

springMVC第二章数据校验和控制层传参

知识点一:使用JSR303框架完成数据校验工作

1.导入数据校验所需要的jar包

1.jpg

2.在springMVC-servlet文件中注册所需要的驱动

<?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:p="http://www.springframework.org/schema/p"
    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-3.0.xsd
                        http://www.springframework.org/schema/context
                        http://www.springframework.org/schema/context/spring-context-3.0.xsd
                        http://www.springframework.org/schema/mvc
                        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

    <context:component-scan base-package="com.xt.handler"></context:component-scan>

    <!-- 启动校验驱动 -->
    <mvc:annotation-driven/>
    
    <!-- 注入校验bean -->
    <bean class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"></bean>

</beans>

3.创建pojo实体类,使用JSR303标准实现数据校验@Pattern@Range...

package com.xt.pojo;

import javax.validation.constraints.Pattern;

import org.hibernate.validator.constraints.Range;

public class Survey {

    private String week;
    @Pattern(regexp="\\w{6,12}",message="姓名必须在6~12位")
    private String name;
    @Range(min=18,max=45,message="年龄必须在18~45之间")
    private int age;
    @Pattern(regexp="\\d{11}",message="电话必须为11位")
    private String tel;
    private String answer1;
    private String answer2;
    private String answer3;
    public Survey() {
        super();
        // TODO Auto-generated aconstructor stub
    }
    public Survey(String week, String name, int age, String tel, String answer1, String answer2, String answer3) {
        super();
        this.week = week;
        this.name = name;
        this.age = age;
        this.tel = tel;
        this.answer1 = answer1;
        this.answer2 = answer2;
        this.answer3 = answer3;
    }
    public String getWeek() {
        return week;
    }
    public void setWeek(String week) {
        this.week = week;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
    public String getTel() {
        return tel;
    }
    public void setTel(String tel) {
        this.tel = tel;
    }
    public String getAnswer1() {
        return answer1;
    }
    public void setAnswer1(String answer1) {
        this.answer1 = answer1;
    }
    public String getAnswer2() {
        return answer2;
    }
    public void setAnswer2(String answer2) {
        this.answer2 = answer2;
    }
    public String getAnswer3() {
        return answer3;
    }
    public void setAnswer3(String answer3) {
        this.answer3 = answer3;
    }
    @Override
    public String toString() {
        return "Survey [week=" + week + ", name=" + name + ", age=" + age + ", tel=" + tel + ", answer1=" + answer1
                + ", answer2=" + answer2 + ", answer3=" + answer3 + "]";
    }
    
    
}

4.在handler中,接受页面请求,进行数据校验。

  1. @Valid:声明该对象需要进行数据校验
  2. @ModelAttribute("survey") 将jsp页面传回来的数据封装到survey中,
  3. 由于 @ModelAttribute("survey")前面有@Valid,所以封装好的survey对象也包含了校验后的信息。
  4. BindingResult bindingResult用于收集错误信息,当有错误信息时,hasError()方法为true。
package com.xt.handler;

import javax.validation.Valid;
import javax.websocket.server.PathParam;

import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;

import com.xt.pojo.Survey;

@Controller
@RequestMapping("/survey")
public class SurveyHandler {
    @RequestMapping(value="/{week}/check")
    public String checkMessage(@Valid @ModelAttribute("survey") Survey survey,@PathVariable String week,BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            System.out.println("error");
            return "/survey.jsp";
        } else {
            System.out.println("success");
            return "/success.jsp";
        }
    }
}

5.创建survey.jsp,将数据提交到handler中

  1. 注册form标签库:<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
  2. 从handler中获取封装好的survey对象,该对象中包含了错误信息:form:form modelAttribute="survey"
  3. 如果有错误信息将错误信息打印:<span><form:errors path="name"/></span><br/>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>   
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>survey</title>
    </head>
    <body>
        <form:form modelAttribute="survey" action="/springMVCT2/survey/201907/check" method="post">
            <fieldset>
                <legend>读者调查问卷</legend>
                <!-- 基本信息 start -->
                <fieldset>
                    <legend>基本信息</legend>
                    <table>
                        <tr><td>姓名</td>
                        <td><input name="name"><span><form:errors path="name"/></span><br/></td>
                        </tr>
                        <tr><td>年龄</td>
                        <td><input name="age"><span><form:errors path="age"/></span><br/></td>
                        </tr>
                        <tr><td>联系电话</td>
                        <td><input name="tel"><span><form:errors path="tel"/></span><br/></td>
                        </tr>
                    </table>                
                </fieldset>
                <!-- 基本信息 end -->
                <!-- 调查信息 start -->
                <fieldset>
                    <legend>调查信息</legend>
                    <b>您喜欢的本期封面和内容版式设计吗?</b><br/>
                    <textarea rows="3" cols="100" name="answer1"></textarea><br/>
                
                    <b>您喜欢的本期的哪几篇文章?</b><br/>
                    <textarea rows="3" cols="100" name="answer2"></textarea><br/>
                    <b>您不喜欢的本期的哪几篇文章?</b><br/>
                    <textarea rows="3" cols="100" name="answer3"></textarea>
                </fieldset>
                <!-- 调查信息 end -->
                <center><input type="submit" value="提交调查"></center>
            </fieldset>
        </form:form>        
    </body>
</html>

知识点二:使用ModelAndView对象进行控制层传参

  1. ModelAndView mv = new ModelAndView("/survey.jsp");
  2. return mv;
  3. 注意:@Valid @ModelAttribute("survey") Survey surveyBindingResult bindingResult之间不能添加其它注解。
package com.xt.handler;

import javax.servlet.http.HttpServletRequest;
import javax.validation.Valid;

import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

import com.xt.pojo.Survey;

@Controller
@RequestMapping("/survey")
public class SurveyHandler {
    @RequestMapping(value="/{week}/check",method=RequestMethod.POST)
    public ModelAndView checkMessage(HttpServletRequest req, @PathVariable("week") String week,@Valid @ModelAttribute("survey") Survey survey,BindingResult bindingResult) {
        survey.setWeek(week);
        if (bindingResult.hasErrors()) {
            System.out.println("success");
            ModelAndView mv = new ModelAndView("/survey.jsp");
            return mv;
        } else {
            System.out.println("error");
            ModelAndView mv = new ModelAndView("/success.jsp");
            mv.addObject("week",survey.getWeek());
//          mv.addObject("name",survey.getName());
            req.setAttribute("name", survey.getName());
            mv.addObject("age",survey.getAge());
            mv.addObject("tel",survey.getTel());
            mv.addObject("answer1",survey.getAnswer1());
            mv.addObject("answer2",survey.getAnswer2());
            mv.addObject("answer3",survey.getAnswer3());
            System.out.println("success");
            return mv;
        }
    }
}

知识点三:给request,session作用域赋值

方法:直接在public ModelAndView checkMessage(HttpServletRequest req)
参数中添加HttpServletRequest req,HttpSession sessions

知识点四:利用form标签库从model中读取数据

`
传统方式中,我们生成复选框,下拉选框,都直接在jsp页面编写好html代码,
但是这种方式,不利于代码的可扩展性,比如省份下拉框中,如果新增了其他的省份,
需要修改很多处的代码,给代码的可维护性大大降低。
因此我们一般在程序设计中,一般采用从数据库读出的方式,再结合标签来生成相应的代码。

以生成省份下拉框为例进行演示。
`

编写Province pojo类

package com.xtkj.pojo;

public class Province {

    private int id;
    private String name;
    
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Province() {
        super();
        // TODO Auto-generated constructor stub
    }
    public Province(int id, String name) {
        super();
        this.id = id;
        this.name = name;
    }
    @Override
    public String toString() {
        return "Province [id=" + id + ", name=" + name + "]";
    }
}

编写service层,将查询到的provinces返回给controler层

package com.xtkj.service;

import java.util.ArrayList;
import java.util.List;
import org.springframework.stereotype.Service;
import com.xtkj.pojo.Province;

@Service("userService")相当于<bean id="userService" class="...."></bean>
@Service("userService")引号里面的内容<bean里面的id="userService">
@Service("userService")
public class UserService {

    public List<Province> getProvince(){
        
        List<Province> list = new ArrayList<Province>();
        
        list.add(new Province(1, "湖北"));
        list.add(new Province(2, "湖南"));
        list.add(new Province(3, "广西"));
        list.add(new Province(4, "广东"));
    
        return list;
    }
    
}

@Service("userService")就类似于@Controller

在将service注入到handler中

有两种方法:
1.@Autowired 自动注入,需要@Service("userService")private UserService userService;对象名一致
2.@Resource(name="userService")//获取指定id的bean,通过service名称注入

package com.xtkj.handler;

import java.util.List;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.validation.Valid;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;

import com.xtkj.pojo.Province;
import com.xtkj.pojo.User;
import com.xtkj.service.UserService;

@Controller
@RequestMapping("/")
public class UserHandler {
    
    @Autowired
    //@Resource(name="userService")//获取指定id的bean
    private UserService userService ;

    @RequestMapping("/regist")
    public String regist(@Valid @ModelAttribute("user") User user,BindingResult br){
        
        if(br.hasErrors()){
            return "/regist.jsp";
        }else{
            System.out.println("account="+user.getAccount());
            
            return "/welcome.jsp";
        }
        
    }
    
    @RequestMapping("/goRegist")
    public String goRegist(HttpServletRequest req){
        
        System.out.println("userService="+userService);
        List<Province> province = userService.getProvince();
        
        req.setAttribute("provinces", province);
        req.setAttribute("user", new User());
        
        return "/regist.jsp";
    }
    
}

注意:由于进入注册页面就需要有省份下拉框的信息,所以,在进入regist.jsp之前首先应该
调用查询方法,然后再请求转发给jsp页面。这样jsp页面才能获取Province数据,由此,就有了
public String goRegist(HttpServletRequest req){...}方法。

编写jsp页面,使用<form:>

省份:<form:select path="province">
                <form:options items="${provinces }" itemLabel="name" itemValue="id"/>
            </form:select><br/>
        <input type="submit" value="注册"/>
    </form:form>

完整代码如下:

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'regist.jsp' starting page</title>
    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->

    <style type="text/css">
        span{
            color:red;
        }
    </style>


  </head>
  
  <body>
    <form:form modelAttribute="user" action="regist.form">
        账号:<input type="text" name="account" value="${user.account }"/><span><form:errors path="account"/></span><br/>
        密码:<input type="password" name="password" value="${user.password }"/><span><form:errors path="password"/></span><br/>
        头像:<img src="img/wa.png"/><br/>
        省份:<form:select path="province">
                <form:options items="${provinces }" itemLabel="name" itemValue="id"/>
            </form:select><br/>
        <input type="submit" value="注册"/>
    </form:form>
  </body>
</html>

知识点五:在SpringMVC中访问静态资源

由于在web.xml中DispatcherServlet的url-pattern为'/'拦截一切资源访问,所以jsp页面请求访问静态资源也会被拦截。解决办法有以下两种:
方法一:修改<url-pattern>

<!-- springMVC核心 -->
  <servlet>
    <servlet-name>springMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  </servlet>
  
  <servlet-mapping>
    <servlet-name>springMVC</servlet-name>
<!-- <url-pattern>/</url-pattern> -->
    <url-pattern>*.form</url-pattern>
  </servlet-mapping>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343