I want to specify following hbm configuration using annotations:
<id name="somePK" column=""somePK"" type="long">
<generator class="com.db.hibernate.KeyGenerator"/>
</id>
I am not sure how to provide class name with
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="SEQ_STORE")
Do I have to specify @javax.persistence.SequenceGenerator
in each entity class?
Can I specify just the class name under @GeneratedValue
annotation?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…