SpringMVC註解@initbinder解決類型轉換問題
阿新 • • 發佈:2018-01-05
解析器 map 數據 apt tag tom omd -s XML
在使用SpringMVC的時候,經常會遇到表單中的日期字符串和JavaBean的Date類型的轉換,而SpringMVC默認不支持這個格式的轉換,所以需要手動配置,自定義數據的綁定才能解決這個問題。
在需要日期轉換的Controller中使用SpringMVC的註解@initbinder
和Spring自帶的WebDateBinder
類來操作。
WebDataBinder是用來綁定請求參數到指定的屬性編輯器.由於前臺傳到controller裏的值是String類型的,當往Model裏Set這個值的時候,如果set的這個屬性是個對象,Spring就會去找到對應的editor進行轉換,然後再SET進去。
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
dateFormat.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
需要在SpringMVC的配置文件加上
<!-- 解析器註冊 -->
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="stringHttpMessageConverter"/>
</list>
</property>
</bean>
<!-- String類型解析器,允許直接返回String類型的消息 -->
<bean id="stringHttpMessageConverter" class="org.springframework.http.converter.StringHttpMessageConverter"/>
SpringMVC註解@initbinder解決類型轉換問題