使用技术为ssm+maven
实体类用的lombook注解
使用@DateTimeFormat(pattern = “yyyy-MM-dd HH:mm:ss”)
@JsonFormat(pattern = “yyyy-MM-dd HH:mm:ss”,timezone = “GMT+8”)
两个注解都无效,时间类型依然是时间戳。那么既然用注解不行的话,那就用土方法。
import lombok.Data;
import java.text.SimpleDateFormat;
import java.util.Date;
@Data
public class TArticle {
//@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
//@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date createdate;
public String getCreatedate() {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return sdf.format(createdate);
}
}
直接用时间类型转换方法即可解决