在我的模特中我有这个:
@Entity
public class Plan {
...
@Temporal(TemporalType.TIMESTAMP)
@Column(nullable = false)
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Calendar creationDate;
...
在eclipse调试器中,我在这行中有一个NullPointerException:
plan.setCreationDate(instance);
答案 0 :(得分:1)
可能您的android:configChanges="orientation|keyboardHidden|screenSize"
对象未被实例化
这样可以防止异常:
plan