Tagged Questions
3
votes
1answer
3k views
Hibernate default joining for nullable many-to-one
I have a hibernate mapping like this in a ProductDfn class
@ManyToOne( fetch = FetchType.LAZY, optional = true )
@JoinColumn( name = "productTypeFk", nullable = true )
public ProductType ...