在JPA(Hibernate)中保存非持久对象ID

时间:2011-12-07 08:58:02

标签: java hibernate annotations jpa-2.0

我有一个静态类,如:

public class Sex{

private final int code;
private final String status;

public static final int TOTAL = 3;

private Sex(int c, String s) {
code = c;
status = s;
}

public static final Sex UNDEFINED = new Sex(1, "UNDEFINED");
public static final Sex MALE = new Sex(2, "MALE");
public static final Sex FEMALE = new Sex(3, "FEMALE");
private static final Sex[] list = { UNDEFINED, MALE, FEMALE };

public int getCode() {
return code;
}

public String getStatus() {
return status;
}

public static Sex fromInt(int c) {
if (c < 1 || c > TOTAL)
throw new RuntimeException("Unknown code for fromInt in Sex");
return list[c-1];
}

public static List getSexList() {
return Arrays.asList(list);
}
}

而且,我有一个实体类

@Entity
@Table(name="person")

public class Person{

    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    private long id;// setter/getter omitted

    private Sex sex;
    public final Sex getSex() {
    return this.sex;
    }
    public final void setSex(final Sex argSex) {
    this.sex = argSex;
    }
}

我想将sex_id保存在人员表的数据库中。但是setter / getter应该是指定的,因为我想把我的代码写成 -

Person person = new Person();
person.setSex(Sex.MALE);
Dao.savePerson(person);

如何使用JPA注释Sex

2 个答案:

答案 0 :(得分:4)

由于您不想在数据库中创建新的Sex实例,为什么不为enum使用class而不是Sex?< / p>

如果您这样做,则只需在Sex课程中使用@Enumerated(EnumType.STRING)Person属性添加注释即可。完整示例here(或只是谷歌,你会发现很多)

答案 1 :(得分:1)

为什么不使用枚举器性别,然后使用@Enumerated呢?

 @Enumerated(EnumType.STRING)
   Sex sex