@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 © 2016. All rights reserved.