struts2 json 输出日期格式不正确
Posted Qiao_Zhi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2 json 输出日期格式不正确相关的知识,希望对你有一定的参考价值。
struts2 输出json中 日期出现:2013-12-17T15:57:47 错误格式的数据
原因:struts2 json插件对日期的格式化有问题
解决方法:在实体类的日期的get方法上加注解:@JSON(format="yy-MM-dd HH:mm:ss")
例如:
@JSON(format = "yy-MM-dd HH:mm:ss")
public Date getFindtime() {
return findtime;
}
以上是关于struts2 json 输出日期格式不正确的主要内容,如果未能解决你的问题,请参考以下文章