Код: Выделить всё
@Entity
public class Club {
private static final String SEQ = "Club_Seq";
@Id
@GeneratedValue(generator=SEQ, strategy=GenerationType.SEQUENCE)
@SequenceGenerator(name=SEQ, sequenceName=SEQ, allocationSize=1)
protected long id;
}
Код: Выделить всё
@GeneratedSequence(name=SEQ)
protected long id;
Подробнее здесь: https://stackoverflow.com/questions/791 ... f-severals
Мобильная версия