You can just map the "B_ID" column as a property in the A mapping, without worrying about the relationship, so you have not to change your java code.
Just put something like that in A mapping file:
Code:
<property name="bId" column="b_id"/>
Then you can use theta-style joins in your HQL queries to retreive the relationship value:
Code:
select b from A a, B b where a.bId = b.id and a.id = :something
Or just use get:
Code:
B b = session.get(B.class, a.getBId())
You should however really think about converting the "bId" column in a "b" property of type B. Having an "A" object you can just do:
Code:
a.getB()
and you'll get the "b" object without any query.