Springmvc时间格式处理spring mvc中,如果时间格式是yyyy-MM-dd,传⼊后台会报错,要增加⼀些配置才可以。
1.修改l,增加org.springframework.format.support.DefaultFormattingConversionService
spring framework runtime<bean class="org.springframework.web.hod.annotation.RequestMappingHandlerMapping"/> <bean class="org.springframework.web.hod.annotation.RequestMappingHandlerAdapter"> <property name="messageConverters">
<list>
<ref bean="mappingFastJsonHttpMessageConverter"/><!-- JSON转换器 -->
</list>
</property>
<property name="webBindingInitializer">
<bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
<property name="conversionService" ref="conService"/>
</bean>
</property>
</bean>
<bean id="conService" class="org.springframework.format.support.DefaultFormattingConversionService"/> 2.在实体属性处增加DateTimeFormat注解
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date reqisterDate;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。