Nej det kan du inte. Generatorn är endast tillämplig för identifierarkolumner.
Se till att du skapar den här sekvensen med ett skript (t.ex. hibernate.hbm2ddl.import_files
):
create sequence subscription_code_1_seq start 1 increment 7
Använd sedan en mappning så här:
@Id
@SequenceGenerator(
name="subscription_id_seq",
sequenceName="subscription_id_seq",
allocationSize=7
)
@GeneratedValue(
strategy=GenerationType.SEQUENCE,
generator="subscription_id_seq"
)
@Column(unique=true, nullable=false)
private Integer id;
@Column(
name="code",
nullable=false,
unique=true,
insertable = false,
updatable = false,
columnDefinition = "BIGINT DEFAULT nextval('subscription_code_1_seq')"
)
@Generated(GenerationTime.INSERT)
private Integer code;