10

我在实体中映射字符串和枚举集合时遇到问题。我遵循了不同的建议,但似乎没有任何效果。我正在使用 PlayFramework 2.0 和提供的 Ebean 作为 ORM。

这是一个插图类:

package models;

import java.util.*;
import javax.persistence.*;
import play.db.ebean.Model;

@Entity
@Table(name = "foo")
public class Foo extends Model {

    private static final long serialVersionUID = 1L;

    private enum FooBar {
        FOO, BAR;
    }

    @Id
    public Long id;

    @ElementCollection
    @Enumerated(EnumType.STRING)
    @CollectionTable(name = "bar_foobar", 
        joinColumns = @JoinColumn(name = "bar_id", 
            referencedColumnName = "id"))
    @Column(name = "foobar")
    public List<FooBar> fooBars;

    @ElementCollection(targetClass = String.class)
    @CollectionTable(name = "bar_strings", 
        joinColumns = @JoinColumn(name = "bar_id"))
    @Column(name = "string", nullable = false)    
    public List<String> listOfStrings;

    @Basic
    public List<String> listOfStrings2;

    // Attempt to circumvent the issue, but this gives a strange error
    //public String[] arrayOfString;
}

应用程序启动时生成的 DDL 如下所示:

create table foo (
id      bigint not null,
constraint pk_foo primary key (id))
;

如果注释正确,我希望同时看到表bar_foobar和正在创建的表。bar_strings

如果使用该arrayOfString变量,我会在应用程序启动时收到一条奇怪的错误消息(与随机实体相关,不一定是 Foo.class

PersistenceException: Error with [models.user.User] 它没有被增强,但它的超类 [class play.db.ebean.Model] 是什么?(不允许在单个继承层次结构中混合增强)marker[play.db.ebean.Model] className[models.user.User]

我知道我可以将我的字符串和枚举包装在实体中,并使用@ManyToMany 关系,但想到它让我不寒而栗。Play 2.0 或 Ebean(使用 v2.7.3)中是否存在错误?还有其他方法可以解决我的问题吗?

4

2 回答 2

1

集合映射尚未在 Ebean 中实现。EBEAN-378你所能做的就是自己实现映射。@PrivateOwned如果从集合中删除字符串,则可以在侧面使用注释以Foo确保字符串不会保留在数据库中。

于 2012-12-22T09:27:33.050 回答
0

这是 2.0 (链接) 中的一个已知问题,但应该在 2.0.1 中修复。

编辑:为清楚起见,“this”指的是 PersistenceException。

于 2012-05-06T11:39:52.663 回答