我有两列,一列是publishDate
和createdDate
。发布日期用户需要手动输入它。 MySQL列中的创建日期默认设置为CURRENT_TIMESTAMP
,因此当创建条目时,DB将自动为条目添加时间戳。
我有一本书POJO publishDate
和createdDate
字段... publishDate
可以出于某种原因处理空数据。但Timestamp字段获得异常。这是为什么?
org.springframework.http.converter.HttpMessageNotWritableException: Could not
write content: (was java.lang.NullPointerException) (through reference chain:
java.util.HashMap["results"]->java.util.ArrayList[30]-
>com.app.books.Book["dateCreated"]); nested exception is
com.fasterxml.jackson.databind.JsonMappingException: (was
java.lang.NullPointerException) (through reference chain:
java.util.HashMap["results"]->java.util.ArrayList[30]-
>com.app.books.Book["dateCreated"])
我试图通过添加注释来抑制它,我尝试了其中几个,因为我一直在阅读有关使用的注释部分的冲突信息。
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL) // but show JsonSerialize is deprecated
@JsonInclude(Include.NON_NULL)// Include can not be resolved as variable
@JsonInclude(JsonInclude.Include.NON_DEFAULT) // finally doesn't give me an error but I still get the same exception.
这是我的书类
@Entity
@Table(name="books")
@Component
public class Book implements Serializable{
/**
*
*/
private static final long serialVersionUID = -2042607611480064259L;
@Id
@GeneratedValue
private int id;
@NotBlank
private String name;
@NotBlank
@Size(min=2, max=16)
private String ispn;
@DecimalMin(value = "0.1")
private double price;
//@JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
//@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
//@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
private Timestamp dateCreated;
private Date datePublished;
非常疲惫......谢谢你的帮助..
答案 0 :(得分:0)
在Book类中,您可能有更好的结果从基元(int& double)切换到Java类(Int& Double)。另见JsonMappingException (was java.lang.NullPointerException) JSON: JsonMappingException while try to deserialize object with null values