SpringMVC初始化参数绑定--日期格式

一、初始化参数绑定[一种日期格式]

配置步骤:

①:在applicationcontext.xml中只需要配置一个包扫描器即可

1
2
<!-- 包扫描器 -->
      <context:component-scan base- package = "cn.happy.controller" ></context:component-scan>

②:在处理器类中配置绑定方法  使用@InitBinder注解

在这里首先注册一个用户编辑器 参数一为目标类型   propertyEditor为属性编辑器,此处我们选用 CustomDateEditor属性编辑器,

参数一为想转换的日期格式,参数二表示是否允许为空

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@Controller
public  class  MyController {
 
     //匹配单个
     @InitBinder
     public  void  initData(WebDataBinder wdb){
         wdb.registerCustomEditor(Date. class new  CustomDateEditor( new  SimpleDateFormat( "yyyy-MM-dd" ),  true ));
         
     }
     
     
     @RequestMapping (value= "/first.do" )
     public  String doFirst(Date birthday, int  age){
     
         return  "/welcome.jsp" ;
     }
}

③ 定制jsp页面:

1
2
3
4
5
6
<form action= "${pageContext.request.contextPath }/first.do"  method= "post" >
    <h1>参数绑定转换器</h1>
                 出生日期:<input name= "birthday"  value= "${birthday}" /><br/><br/>
                 年龄:<input name= "age"  value= "${age }" /><br/><br/>
       <input type= "submit"  value= "注册" />
    </form>

实现效果:


二、多日期的绑定

①自定义的属性编辑器,需要我们继承PropertiesEditor,重写里面的setAsText方法,使用setValue方法赋值

②在处理器类中使用我们自定的属性编辑器

 

实现效果:

 

 

 

 
 

转载于:https://www.cnblogs.com/linjiaxin/p/6329489.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值