Please explain the behaviour. I am following struts2 and hibernate5.0 and i am not using any annotations.
I have two tables table A and table B Table A has columns id , model, comp, class, location , status.
Table B has columns req_id , model, comp, class, location .
Except for the columns id and req_id all the others are similar.
The have written the query in MySql. It is as follows
Select * from A left outer join (
select model,comp,class from B) b
on a.Comp=b.comp and
a.class=b.class and
(a.model like
case when a.model>=b.model
then
b.model + '%'
end
or
b.model like
case when a.model<b.model
then
a.model + '%'
end)
where a.Status='A'
order by a.id
The result will be like for each row in A there will be many rows in B and each A row with the corresponding B row will be dispayed when the above query is executed. I don't know how to map this in the hbm files for exmaple the one to many relationship and how to perform the join. Please help me cause i am new to hibernate. I tried googling and got lot of results, tried everything but unfortunately got errors.
Thanks in Advance.