我有一个奇怪的问题,我无法理解为什么这样做有效,而我遵循简单的记录方式来做,我有以下实体:
@Entity
@Table(name = "users")
public class User extends Model {
@Id
@Column
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;
@Column
@CreatedTimestamp
private DateTime createdDate;
@Column
@UpdatedTimestamp
private DateTime updatedDate;
@Column
@Version
private long version = 0;
@Column(length = 35, nullable = false)
@Constraints.Required
@Constraints.MinLength(2)
@Constraints.MaxLength(50)
private String firstName;
@Column(length = 35, nullable = false)
@Constraints.Required
@Constraints.MinLength(2)
@Constraints.MaxLength(50)
private String lastName;
@Column(length = 256)
@Constraints.MaxLength(256)
private String jobTitle;
@Column(length = 1000)
@JsonIgnore
private String options;
@Transient
private Map<String, Object> properties = new HashMap<>();
@PrePersist
protected void prePersist() throws IOException {
Logger.warn("PrePersist called");
}
@PreUpdate
protected void preUpdate() throws IOException {
Logger.warn("PreUpdate called");
}
@PostLoad
private void postLoad() throws IOException {
Logger.warn("PostLoad called");
}
// settlers and getters here
}
然后对于新用户,我打电话给控制器或服务:
User user = new User();
user.setFirstName("Someone").setLastName("Last Name"); // etc
//then
user.insert();
// or you can even try
// user.save();
我尝试保存新用户并更新用户,在调试时让用户获得断点而不调用具有@PrePersist
,@PreUpdate
和@PostLoad
的方法,但他们是根本没有调用,在实际应用程序中,我从JSON字符串转换为Map options
到properties
,反之亦然。
希望得到支持:http://ebean-orm.github.io/docs/features/eventlistening
我正在使用play 2.5.6和sbt-play-ebean 3.0.2。
答案 0 :(得分:4)
嗯,我不确定这是一个愚蠢的错误还是被误解了,但问题是方法有错误的访问修饰符。
它们必须是public
,而不是protected
或private
:
@PrePersist
public void prePersist() throws IOException {
Logger.warn("PrePersist called");
}
@PreUpdate
public void preUpdate() throws IOException {
Logger.warn("PreUpdate called");
}
@PostLoad
public void postLoad() throws IOException {
Logger.warn("PostLoad called");
}
修改:以防万一,如果修改了@Transient
列,@PreUpdate
和PrePersist
将无效。