|
Fetching an mapped entity using formula is not working in annotation but it's fine with the XML case. @Formula(value = "(1)") private Article article;
it fails but XML it's working fine <many-to-one name="article" class="com.test.bean.Article" formula="(1)"> <column name="ARTICLE" /> </many-to-one>
|