com.alibaba.fastjson.support.config.FastJsonConfig config = new com.alibaba.fastjson.support.config.FastJsonConfig();
config.setSerializerFeatures(SerializerFeature.PrettyFormat, SerializerFeature.WriteMapNullValue);
config.setDateFormat("yyyy-MM-dd HH:mm:ss");
@JSONField(format="yyyy-MM-dd@HH:mm:ss.SSSZ")
public Date getCreateTime() {
return createTime;
}
如果使用上述语句设置了日期格式,则在类里使用JSONField就不会生效,其实应该是如果有个性化的用个性化的,否则才用全局默认的。这个设计不合理。 如果取消了默认的日期格式设计,则JSONField才会生效。