码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC的@InitBinder参数转换

时间:2019-09-26 09:42:43      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:isa   return   rcu   protected   tin   tor   日期   get   spring   

@Controller
@RequestMapping("/index")
public class IndexController {
	/**
	 * 解决前端传递的日期参数验证异常
	 * 
	 * @param binder
	 * @author hzj
	 */
	@InitBinder({"param", "date"})//指定校验参数
	protected void initBinder(WebDataBinder binder) {
		// binder.setDisallowedFields("name"); // 不绑定name属性
		binder.registerCustomEditor(String.class, new StringTrimmerEditor());

		// 此处使用Spring内置的CustomDateEditor
		DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
		binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
	}


	@ResponseBody
	@GetMapping("/initbinder")
	public String testInitBinder(String param, Date date) {
		return param + ":" + date;
	}

}

  

SpringMVC的@InitBinder参数转换

标签:isa   return   rcu   protected   tin   tor   日期   get   spring   

原文地址:https://www.cnblogs.com/charkey/p/11588724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!