Skip to content

Instantly share code, notes, and snippets.

@davidpaniz
Created December 22, 2014 21:02
Show Gist options
  • Save davidpaniz/c099a10d121a85ef7133 to your computer and use it in GitHub Desktop.
Save davidpaniz/c099a10d121a85ef7133 to your computer and use it in GitHub Desktop.
@Entity
public class Comentario {
@Id
@GeneratedValue
private long id;
private String comentario;
@Any(metaColumn = @Column(name = "detail_type"))
@AnyMetaDef(idType = "long", metaType = "string", metaValues = {
@MetaValue(value = "RESTAURANTE", targetEntity = Restaurante.class),
@MetaValue(value = "PRATO", targetEntity = Prato.class) })
@JoinColumn(name = "detail_id")
private Comentavel comentavel;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment