欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SpringMVC的校验和国际化3

程序员文章站 2022-05-24 14:45:32
...

1、我们可以根据页面的提交方式(get和post)来添加特定的注解。
get 请求时 ,添加 @GetMapping("/saveEmp") 注解 ,saveEmp为调用控制器的名称
post 请求时 ,添加 @PostMapping("/saveEmp") 注解。
同时也可以写成
@RequestMapping(value = “/saveEmp”,method = RequestMethod.POST)或
@RequestMapping(value = “/saveEmp”,method = RequestMethod.GET)
根据@PathVariable注解我们可以直接获取参数 (路径传参 ) ,例

@GetMapping("/deleteEmpEyId/{eid}")          
    public String deletEmp2(@PathVariable int eid){
        return "";
    }

Ps:在使用问号传参时,可以用HttpServletRequest 进行获取,也可以PathVariable获取,但是需要定义好准确的类型,否则会报错,而且使用注解获取时只能获取传过来的最后面的参数。
2、MVC的校验
首先在spring-mvc.xml中进行配置,消息源

<!--  配置messageSource ,消息源  -->
    <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
        <property name="basename" value="/WEB-INF/msg"/>
    </bean>

然后定义Emp(javabean类)和EmpValidate 校验类,同时EmpValidate类需要实现Validator接口,并且重写两个方法,一个用来 指定当前类是否支持指定类型的校验,另外一个用来编写真正的校验信息,同时可以用来储存错误信息,例

public class EmpValidate implements Validator{

    /**
     * 指定当前类是否支持  指定类型的校验
     * @param aClass
     * @return
     */
    @Override
    public boolean supports(Class<?> aClass) {
        return Emp.class.isAssignableFrom(aClass);
    }

    /**
     *  真正的 校验 方法
     * @param obj   代表需要校验的对象
     * @param errors  用来存储 错误信息
     */
    @Override
    public void validate(Object obj, Errors errors) {
        Emp e= (Emp) obj;

        ValidationUtils.rejectIfEmpty(errors,"eid","emp.eid");
        ValidationUtils.rejectIfEmpty(errors,"name","emp.name");
        ValidationUtils.rejectIfEmpty(errors,"price","emp.price");

        double price = e.getPrice();

        if(price<0){
            errors.rejectValue("price","emp.price.invalidate");
        }
    }
}

然后还要编写msg.properties 文件用来储存错误信息,注意一定要是 名称 为 msg的文件,例

emp.eid=the eid of employee cannot be empty.
emp.name=the name of employee cannot be empty.
emp.price=the salary of employee cannot be empty.
emp.price.invalidate=the salary of employee cannot be negative.

最后在jsp页面使用校验时,需要先导入头文件

<%@ taglib prefix="f" uri="http://www.springframework.org/tags/form" %>

然后使用<f:form > 、<f:input type=“text” path=“eid” />、<f:errors path=“eid”/> 标签进行设置,例

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="f" uri="http://www.springframework.org/tags/form" %>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>save</title>
    <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"> </script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>


<div class="container">
    <f:form class="form-horizontal" method="post" action="saveEmp" commandName="emp">
        <div class="form-group">
            <label for="inputEmail3" class="col-sm-2 control-label">eid</label>
            <div class="col-sm-8">
                <f:input type="text" path="eid"  class="form-control" id="inputEmail3" placeholder="id"/>
                <font color="red"><f:errors path="eid"/></font>
            </div>
        </div>
        <div class="form-group">
            <label for="inputPassword3" class="col-sm-2 control-label">name</label>
            <div class="col-sm-8">
                <f:input type="text" path="name"  class="form-control" id="inputPassword3" placeholder="name"/>
                <font color="red"><f:errors path="name"/></font>
            </div>
        </div>
        <div class="form-group">
            <label for="inputPassword4" class="col-sm-2 control-label">price</label>
            <div class="col-sm-8">
                <f:input type="text" path="price" class="form-control" id="inputPassword4" placeholder="price"/>
                <font color="red"><f:errors path="price"/></font>
            </div>
        </div>
        <div class="form-group">
            <div class="col-sm-offset-2 col-sm-10">
                <button type="submit" class="btn btn-default">save</button>
            </div>
        </div>
    </f:form>
</div>
</body>
</html>

3、MVC的国际化,只需要改变msg文件就和可以,但是要注意properties文件的命名方式。如:msg(必写) + - en (english) + -US(USA).properties 这种命名方式,例 msg_en_US.properties 、 msg_zh_CN.properties
4、关于路径传参(通配的路径传参)和问号传参问题,例

@Controller
public class PathController {

    @RequestMapping("/{path}")   /*通配的路径传参*/
    public String getPath(@PathVariable String path){
        return path+".jsp";
    }

    @GetMapping("/askPassOn")      /*问号传参*/
    public String getAskPassOn(HttpServletRequest request){
        String id = request.getParameter("id");
        String name = request.getParameter("name");
        System.out.println(id+name);
        return "bb.jsp";
    }
}

相关标签: java spring mvc