当前位置: 代码迷 >> JavaScript >> struts2 json Date门类 2010-12-22T10:26:50
  详细解决方案

struts2 json Date门类 2010-12-22T10:26:50

热度:141   发布时间:2012-09-12 09:21:30.0
struts2 json Date类型 2010-12-22T10:26:50

非原创, 只做记录用?http://www.iteye.com/topic/568775

?

json插件默认格式化java.util.Date类型的格式如2010-12-22T10:26:50, 需要添加@JSON(format="yyyy-MM-dd HH:mm:ss")

?

	@JSON(format="yyyy-MM-dd HH:mm:ss")
	public Date getPostDate() {
		return this.postDate;
	}
?
  相关解决方案