Spring注解:InitBinder

注解 InitBinder 是用来初始化绑定器Binder的,而Binder是用来绑定数据的,换句话说就是将请求参数转成数据对象。

@InitBinder用于在@Controller中标注于方法,表示为当前控制器注册一个属性编辑器或者其他,只对当前的Controller有效。

@InitBinder 有2个基本用途,类型转换和参数绑定。

类型转换

比如,将“2019-12-06 16:59:59”这样的字符串转成 java.util.Date 对象

    @InitBinder
    public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
    }

参数绑定

比如,html表单是下面这样的

<form action="/buy" method="post">
    name: <input type="text" name="customer.name"> <br>
    age: <input type="text" name="customer.customerId"> <br>
    name: <input type="text" name="goods.title"> <br>
    age: <input type="text" name="goods.price"> <br>
    <input type="submit">
</form>

在后台将以customer为前缀的参数绑定到Customer对象上,将以goods为前缀的参数绑定到Goods对象上

    @InitBinder("customer")
    public void initCustomer(WebDataBinder binder) {
        binder.setFieldDefaultPrefix("customer.");
    }
 
    @InitBinder("goods")
    public void initGoods(WebDataBinder binder) {
        binder.setFieldDefaultPrefix("goods.");
    }
    
    @PostMapping("/buy")
    public ModelAndView buy(Customer customer, @ModelAttribute("goods") Goods goods, ModelAndView mv) {
        // do something
        return mv;
 
    }

@ModelAttribute(“goods”) 中的 “goods” 用来指定 @InitBinder(“goods”)

换句话讲
在 initGoods 方法中,将以 goods 为前缀的参数封装为名为 goods 的对象;
在 buy 方法中使用 @ModelAttribute(“goods”) 来接收名为 goods 的对象。

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

归否

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值