JacksonMapping Exception :: HttpMessageNotWritableException:无法写内容:(是java.lang.NullPointerException)

时间:2017-05-10 05:07:35

标签: mysql json spring jackson

  • Framework Spring MVC 4.x
  • Hibernate 4.x
  • Jackson 2.8

我有两列,一列是publishDatecreatedDate。发布日期用户需要手动输入它。 MySQL列中的创建日期默认设置为CURRENT_TIMESTAMP,因此当创建条目时,DB将自动为条目添加时间戳。

我有一本书POJO publishDatecreatedDate字段... 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;

非常疲惫......谢谢你的帮助..

1 个答案:

答案 0 :(得分:0)

在Book类中,您可能有更好的结果从基元(int& double)切换到Java类(Int& Double)。另见JsonMappingException (was java.lang.NullPointerException) JSON: JsonMappingException while try to deserialize object with null values