Spring MVC+Fastjson之时间类型序列化

Posted 彩虹天堂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring MVC+Fastjson之时间类型序列化相关的知识,希望对你有一定的参考价值。

时间类型序列化:

注意红色代码,必须引入fastjsonJSONField类,而非其它。

import com.alibaba.fastjson.annotation.JSONField;

@Entity
@Table(name="User")
public class User{
  @Id
  @Column(name = "id")
  @GeneratedValue(strategy = GenerationType.IDENTITY)
  private Long id;
  @JSONField (format="yyyy-MM-dd HH:mm:ss")  
  public Date createTime; 
}

 

以上是关于Spring MVC+Fastjson之时间类型序列化的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 实践折腾记:自定义配置,扩展Spring MVC配置并使用fastjson

Spring MVC 之类型转换

Spring Boot 实践折腾记:自定义配置,扩展Spring MVC配置并使用fastjson

Spring MVC 之 处理Date类型

fastJson设置接口只接受json格式数据

Spring4 MVC json问题(406 Not Acceptable)