tags:

views:

35

answers:

1

I used the mapping solution from this question to have a joined component. But it make hibernate trigger join query to obtain the component event i use fetch="select" in <join>

Please tell me how can i make the joined component lazy init.

Thank you

A: 

By setting fetch="select" you effectively switch off lazy loading. Have you tried without?

Péter Török