java – Playframework Ebean.Save()给Connection Connection

我有一个简单的地址模型的播放框架,但在调用ebean的#save()方法时,我得到以下错误.

我认为数据库配置正确(我可以毫无问题地阅读模型).
在内存H2数据库上运行的单元测试工作正常.

码:

  Address address = new Address(street, postalcode, location);
  address.save();

播放输出:

[error] c.j.b.ConnectionHandle - Database access problem. Killing off this connection and all remaining connections in the connection pool. SQL State = HY000
[error] play - Cannot invoke the action, eventually got an error: javax.persistence.PersistenceException: java.sql.SQLException: Connection is closed!

地址类

@Entity
public class Address extends Model {
@Id
    public int id;
    public String postalcode;
    public String street;
    public String location;

    @OneToMany(cascade= CascadeType.ALL)
    public List<Estate> estates;

    public Address(String street, String postalcode, String location){
        this.postalcode = postalcode;
        this.street = street;
        this.location = location;
    }
    public Address(int id, String street, String postalcode, String location){
        this.id = id;
        this.postalcode = postalcode;
        this.street = street;
        this.location = location;
    }
    public static Finder<Integer,Address> find = new Finder<Integer, Address>(
        Integer.class, Address.class
    );
}

最佳答案 我找到了解决方案:ebean没有生成模型的ID值.

在我的mysql数据库的id字段上设置auto_increment有效.

点赞