Search Results

1
vote

How to use Hibernate @Any-related annotations?

The @Any annotation defines a polymorphic association to classes from multiple tables. This type of mapping always requires more than one column. The first column holds the type of the associated e …
0
votes

JPA Composite Key + Sequence

Try like this: @TableGenerator(name = "canonicalKeys", allocationSize = 1, initialValue = 1) @GeneratedValue(strategy = GenerationType.TABLE, generator = "canonicalKeys") @Column(na …