1

(java1.6,休眠,mysql)

我正在尝试保留一个包含字符串列表的 java 类。问题是当我获取它时,我得到一个 PersistentBag 而不是 List 或 PersistentList。我寻找答案或示例,但我变得更加困惑。

我有一个我使用的小测试用例:

@Test
public void testFind() {
    FooEntity expected = createFoo();
    FooEntity actual = dao.find(expected.getId());
    assertEquals(expected, actual);
    assertEquals(actual, expected);
}

该问题可以看作是第一个 assertEquals 有效,而第二个
(assertEquals(actual, expected);) 失败。这是因为 List 作为 PersistentBag 检索的。

所以,你知道这里有什么问题吗?你能帮我吗?

这是我的代码:

import java.util.ArrayList;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.ElementCollection;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name = "EXAMPLE4_FOO")
public class FooEntity {

    @Id
    @GeneratedValue
    @Column(name = "ID")
    private int id;

    @Column(name = "LIST")
    @ElementCollection(fetch = FetchType.EAGER)
    private List<String> strings = new ArrayList<String>();

    public FooEntity() {
    }

    public int getId() {
    return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public List<String> getStrings() {
    return strings;
    }

    public void setStrings(ArrayList<String> strings) {
        this.strings = strings;
    }

/*
   equals() and hashCode() ....
*/
}
4

1 回答 1

5

要拥有一个列表,Hibernate 需要知道如何对列表的元素进行排序或索引。使用@OrderColumn 注释或@OrderBy 注释。有关这些注释之间的详细信息和差异,请参阅http://docs.jboss.org/hibernate/core/3.6/reference/en-US/html_single/#collections-indexed 。

如果你不能为你的元素排序或索引,那么你有一个包,而不是一个列表。并且应该修复您的 equals 方法以避免考虑元素的顺序。

于 2012-01-11T18:09:35.803 回答