使用Ebean和Play Framework 2的OptimisticLockException

时间:2012-09-27 08:59:44

标签: playframework-2.0 ebean

我在Play Framework 2中使用Ebean,有时会出现类似的OptimisticLockException:

play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception [[OptimisticLockException: Data has changed. updated [0] rows sql[update manager set modification_time=?, session_id=?, expiration_date=? where id=? and rating=? and creation_time=? and modification_time=? and name=? and surname=? and login=? and password_hash=? and email=? and session_id=? and expiration_date=?] bind[null]]]

当少数演员开始访问数据库时会发生这种情况。

所以,Manager类是:

public class Manager extends Model {
@Getter @Setter
Long id;

@Getter @Setter
private String name;

@Getter @Setter
private String surname;

@Column(unique = true)
@Getter @Setter
private String login;

@Getter @Setter
private String passwordHash;

@Getter @Setter
private String email;

@Embedded
@Getter @Setter
private ManagerSession session;

@Getter
private Timestamp creationTime;

@Getter
private Timestamp modificationTime;

@Override
public void save() {
    this.creationTime       = new Timestamp(System.currentTimeMillis());
    this.modificationTime   = new Timestamp(System.currentTimeMillis());
    super.save();
}

@Override
public void update() {
    this.modificationTime   = new Timestamp(System.currentTimeMillis());
    super.update();
}

}

save()和update()使用钩子代替@PrePersist注释,因为Ebean不支持它。 据我所知@Version注释总是带来乐观锁定模式,所以我开始使用这样的技巧。我知道Optimistick锁是什么,但是当许多演员应该修改相同的db记录时,这种情况应该如何解决?最后一次修改获胜?

2 个答案:

答案 0 :(得分:15)

Solution:

问题:直接从Play窗体保存分离的EBean模型会导致OptimisticLockException,或者在使用@Version时导致NullpointerException。

Form<Venue> form = form(Venue.class).bindFromRequest();
form.get().update(id); // this causes the exception

解决方案:在从请求参数绑定之前,表单应支持从数据库向其提供对象。然后,请求中找到的参数将覆盖对象上的相关属性。也许在bindFromRequest()之前调用fill():

Form<Venue> form = form(Venue.class).fill(Venue.find.byId(id)).bindFromRequest();
form.get().update(id);

答案 1 :(得分:2)

我解决了这个OptmistLockException问题,只是在尝试更新时将实体ID传递给控制器​​。为防止用户更改值,该值作为隐藏字段传递。

 <input type="hidden" name="id" value="@formVar(<identifierVariable>).value"/>

在控制器端,我检查收到的表格是否有错误。在否定的情况下,我在表单中更新附加的实体。

 public static Result update() {
     Form<Entity> filledForm = form.bindFromRequest();
     if ( filledForm.hasErrors() ) {
        flashError("app.oh_snap", "app.change_things");
     } else {
        Entity entity = filledForm.get();
        entity.update();
     }
 }