如何为全局范围自定义Struts Json插件日期格式

时间:2011-05-09 02:33:32

标签: json struts2

至于标题。 我不想在每个getXXXDate()上添加一个注释(@Json(format =“yyyy-MM-dd HH:mm:ss”),有人可以提供解决方案吗?

1 个答案:

答案 0 :(得分:6)

您可以在对象类中使用struts 2 json插件,例如:

        private Date createdDate;

        @JSON(format="MM/dd/yyyy") 
  // or @JSON(format="date.format") from bundle resource properties files
        public Date getCreatedDate() {
            return createdDate;
        }

        public void setCreatedDate(Date createdDate) {
            this.createdDate = createdDate;
        }