我有如下枚举。
public enum TestEnum { EXAMPLE, FURTHER_EXAMPLE, LAST_EXAMPLE }
在 .hbm 中使用此映射:
<property name="testEnum" column="TEST_COLUMN">
<type name="org.hibernate.type.EnumType">
<param name="enumClass">p.a.c.k.TestEnum</param>
</type>
</property>
枚举作为 0、1、2 发送到数据库。没问题。但是当我检索到相同的结果时,我需要得到EXAMPLE、FURTHER_EXAMPLE、LAST_EXAMPLE 而不是0、1、2。我怎样才能做到这一点?请帮我!