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 ...
1
vote
1answer
709 views
Good object structure for results of my Hibernate left outer join
I need to make an outer join query that retrieves all of the definitions and any properties they have associated with them that are associated with a certain company.
I have two Hibernate models ...