If I have only GeneratedValue in super class and if I have a specific generator type in subclass, how can i override this feature.
SUPER CLASS :
@Id
@GeneratedValue
private Long id;
SUB CLASS:
@Id
@SequenceGenerator(name = "a", sequenceName = "a")
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "a")
private Long id;