Struts2的JSON插件--格式化时间/控制属性返回

    JSON插件默认格式化java.util.Date类型的格式如2012-12-22T10:26:50, 需要添加@JSON(format="yyyy-MM-dd HH:mm:ss")
@JSON(format="yyyy-MM-dd HH:mm:ss") 
public Date getPostDate() { //bean中的getter----输出
   return this.postDate; 
}

     JSON插件可要剔除不需要返回的属性,在getter方法上使用@JSON(serialize=false)进行注解就能实现。

//设置pwd属性不作为json的内容返回
@JSON(serialize=false)
public String getPwd() {
    return pwd;
}

核心JAR包:org.apache.struts2.json.annotations.JSON


你可能感兴趣的:(注解,struts2,时间格式)