Spring MVC对日期处理时出现的问题
1.在springmvc的配置文件中添加这个.annotation-driven在配置文件中只配置一次 (此方法全局作用)
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="com.fasterxml.jackson.databind.ObjectMapper">
<property name="dateFormat">
<bean class="java.text.SimpleDateFormat">
<constructor-arg type="java.lang.String" value="yyyy-MM-dd HH:mm:ss"/>
</bean>
</property>
</bean>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
2.直接在字段上写上
@JsonFormat(pattern="yyyy-MM-dd",timezone="GMT-8")
private Date inputtime;
二、前端日期类型传到后台
1.在Controller类中添加这个方法 (此方法全局作用)
@InitBinder
public void initBinder(WebDataBinder binder){
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
sdf.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(sdf, true));
}
2.直接在字段上添加
@DateTimeFormat(pattern="yyyy-MM-dd")
private Date beginDate;
以上就是Spring MVC对日期处理时出现的问题的详细内容,更多请关注其它相关文章!
下一篇: 带有输入跳转的分页
推荐阅读
-
windows下配置apache+php+mysql时出现问题的处理方法
-
解决vue中使用Axios调用接口时出现的ie数据处理问题
-
解决Spring Boot和Feign中使用Java 8时间日期API(LocalDate等)的序列化问题
-
windows下配置apache+php+mysql时出现问题的处理方法
-
解决 JScript 中使用日期类型数据时出现类型错误的问题
-
spring mvc 对ajax的处理
-
MAC系统对python3.5安装pip时出现的问题
-
vue对storejs获取的数据进行处理时遇到的几种问题小结
-
处理日期相关的问题时如何提取出生日期的年、月、日
-
解决vue中使用Axios调用接口时出现的ie数据处理问题