@Target(value={METHOD,FIELD}) @Retention(value=RUNTIME) public @interface GeneratedValue
Make an ID autoincrement on PrePersist
events.
{ use(new Monphia().with(IdGen.GLOBAL); }
ID must be of type: Long
and annotated with GeneratedValue
:
@Entity public class MyEntity { @Id @GeneratedValue Long id; }
Copyright © 2019. All rights reserved.