gpt4 book ai didi

java - 在 hibernate hbm 中映射枚举?

转载 作者:搜寻专家 更新时间:2023-11-01 03:53:43 25 4
gpt4 key购买 nike

我有一个枚举如下。

public enum ExampleEnum {
ONE(1), TWO(2);

private int action;

private ExampleEnum (int action){
this.action = action;
}

/**
* @return the action
*/
public int getAction() {
return action;
}

/**
* @param action the action to set
*/
public void setAction(int action) {
this.action = action;
}


}

我需要保存整数值,而不是一和二。我怎样才能做到这一点?我的 hbm 中有以下配置:

<property name="action">
<column name="ACTION" />
<type name="org.hibernate.type.EnumType">
<param name="enumClass">com.ExampleEnum</param>
</type>
</property>

我需要任何其他配置来保存整数吗?请帮助我!

谢谢!

最佳答案

`

<class name="package.class" table="database table name">
<id name="get/set parameter....your first attribute" type="int" column="data base columnname">
<generator class="increment"/><!--using auto increment-->
</id>
<property name="get/set parameter your second attribute">
<column name="data base column name"/>
</property>
</class>`

关于java - 在 hibernate hbm 中映射枚举?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15831814/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com