我有一个静态类,如:
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
?
答案 0 :(得分:4)
由于您不想在数据库中创建新的Sex
实例,为什么不为enum
使用class
而不是Sex
?< / p>
如果您这样做,则只需在Sex
课程中使用@Enumerated(EnumType.STRING)
为Person
属性添加注释即可。完整示例here(或只是谷歌,你会发现很多)
答案 1 :(得分:1)
为什么不使用枚举器性别,然后使用@Enumerated
呢?
@Enumerated(EnumType.STRING)
Sex sex