javaee springMVC自定义转换类实现日期类型转换

定义转换类

package com.test.editor;

import java.beans.PropertyEditorSupport;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

//自定义转换类
public class DateEditor extends PropertyEditorSupport {

    //将提交过来的字符串 转换为 日期类型
    //比如 2020-01-01
    @Override
    public void setAsText(String text) throws IllegalArgumentException {
        //super.setAsText(text);
        //定义简单日期转换对象
        SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");

        //将字符串转换为日期类型
        Date date=null;

        try {
            date= simpleDateFormat.parse(text);
        } catch (ParseException e) {
            e.printStackTrace();
        }

        //将转换好的数据赋值给对应的属性
        setValue(date);

    }
}

加载转换类

package com.test.controller;

import com.test.editor.DateEditor;
import com.test.pojo.Users2;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.RequestMapping;

import java.util.Date;

@Controller
@RequestMapping("/users2")
public class Users2Controller {

    @InitBinder
    public void initBinder(WebDataBinder binder)
    {
        //将自定义的转换类注册到binder对象中
        binder.registerCustomEditor(Date.class,new DateEditor());

    }


    @RequestMapping("/addUser")
    public String addUser(Users2 user2)
    {
         System.out.println(user2);

         return "success";
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值