java日期属性json格式化_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java日期属性json格式化

java日期属性json格式化

 2017/12/20 18:56:11  hbxflihua  程序员俱乐部  我要评论(0)
  • 摘要:importjava.util.Date;importorg.springframework.format.annotation.DateTimeFormat;importcom.alibaba.fastjson.annotation.JSONField;importcom.fasterxml.jackson.annotation.JsonFormat;publicclassUser{privateLongid;privateStringusername
  • 标签:Java JSON JS
class="java">import java.util.Date;

import org.springframework.format.annotation.DateTimeFormat;

import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;

public class User {
	
	private Long id;
	private String username;
	// 日期类型输出到页面格式
	@JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")  
	// 页面字符串格式化为日期
	@DateTimeFormat(pattern="yyyy-MM-dd") 
	// 代码中转JSON格式字符串
	@JSONField(format="yyyyMMdd")
	private Date birthday;
	private Integer status;
	
	//getter setter 略
	
}

?

?

发表评论
用户名: 匿名