2009-12-15 11 views

Respuesta

33

Las propiedades se anulable por defecto en la APP, excepto los tipos primitivos. Puede controlar la capacidad de nulidad usando el nullable property of the @Column annotation, así:

//not nullable 
@Column(nullable = false) 
private String prop1; 

//nullable 
@Column(nullable = true) 
private String prop2; 

//default = nullable 
@Column 
private String prop3; 
Cuestiones relacionadas