注解 InitBinder 是用来初始化绑定器Binder的,而Binder是用来绑定数据的,换句话说就是将请求参数转成数据对象。
@InitBinder用于在@Controller中标注于方法,表示为当前控制器注册一个属性编辑器或者其他,只对当前的Controller有效。
@InitBinder 有2个基本用途,类型转换和参数绑定。
类型转换
比如,将“2019-12-06 16:59:59”这样的字符串转成 java.util.Date 对象
1 | |
2 | public void initBinder(WebDataBinder binder) { |
3 | SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
4 | dateFormat.setLenient(false); |
5 | binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); |
6 | } |
参数绑定
比如,html表单是下面这样的
1 | <form action="/buy" method="post"> |
2 | name: <input type="text" name="customer.name"> <br> |
3 | age: <input type="text" name="customer.customerId"> <br> |
4 | name: <input type="text" name="goods.title"> <br> |
5 | age: <input type="text" name="goods.price"> <br> |
6 | <input type="submit"> |
7 | </form> |
在后台将以customer为前缀的参数绑定到Customer对象上,将以goods为前缀的参数绑定到Goods对象上
1 | ("customer") |
2 | public void initCustomer(WebDataBinder binder) { |
3 | binder.setFieldDefaultPrefix("customer."); |
4 | } |
5 | |
6 | ("goods") |
7 | public void initGoods(WebDataBinder binder) { |
8 | binder.setFieldDefaultPrefix("goods."); |
9 | } |
10 | |
11 | ("/buy") |
12 | public ModelAndView buy(Customer customer, @ModelAttribute("goods") Goods goods, ModelAndView mv) { |
13 | // do something |
14 | return mv; |
15 | |
16 | } |
@ModelAttribute(“goods”) 中的 “goods” 用来指定 @InitBinder(“goods”)
换句话讲,先在 initGoods 方法中,将以 goods 为前缀的参数封装为名为 goods 的对象;然后在 buy 方法中使用 @ModelAttribute(“goods”) 来接收名为 goods 的对象。