views:

2176

answers:

2

Hi all,

I want to perform a LEFT OUTER JOIN between two tables using the Criteria API. All I could find in the Hibernate documentation is this method:

Criteria criteria = this.crudService
            .initializeCriteria(Applicant.class)
            .setFetchMode("products", FetchMode.JOIN)
            .createAlias("products", "product");

However, this either performs an inner join or a right outer join, because of the number of results it returns.

I also want my join to be Lazy. How can I do this?

Cheers!

UPDATE: It seems that using aliases makes the join INNER JOIN automatically. There is something in the "background story" I have not grasped yet. So, no alias today. This leaves me with the problem of applying restrictions to the two tables, because they both have a column (or property, if this is more appropriate) 'name'.

A: 

A join is in the SQL request. It can't be lazy.


With Hibernate, to retrieve lazily this data, just exclude it from the HQL request. Then, when you access the getters on your entity (if your Session is still open), it will be loaded automatically (you don't have to write that part of the request).

KLE
Sorry, I didn't get this. Perhaps I should rephrase: I want to have a LEFT OUTER JOIN, but also I want the data to be actually retrieved only when needed (the appropriate getter is called). Is Laziness (or eagerness) somehow connected with the type of SQL JOIN that takes place?
Markos Fragkakis
Lazyness may be realised with objects, but not with an SQL request. A request is executed once fully, it is not designed so that part of the request is executed later if needed!
KLE
In HQL I write LEFT OUTER JOIN FETCH. So, presumably an HQL query corresponds to many SQL ones, which are executed when needed? Anyway, lazily or not, how can I do a LEFT OUTER JOIN? And not in HQL, using the Criteria API. Cheers!
Markos Fragkakis
@Markos For joins, the HQL query get translated to only one equivalent SQL query. For the Criteria part, I'm not the expert... :-)
KLE
+3  A: 

If you need to left join on the products table just do:

.....createAlias("products", "product", Criteria.LEFT_JOIN);

sdavids