我在Reponses
班级中有这种关系:
// Foreign Key Questions
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumns({
@JoinColumn(name = "idQuestion", insertable = false, updatable = false),
@JoinColumn(name = "id_parent", insertable = false, updatable = false)
})
private Questions idQuestion;
我在控制器中有这个:
model.addAttribute("Listall", rservice.getAllReponse(id));
在我的HTML页面(Thymeleaf)中,我试图调用 idChapitre
中的 Questions
,如下所示:
<tr th:each ="rep : ${Listall}">
<th th:text ="${rep.idQuestion.idChapitre.title}"></th>
</tr>
简单JoinColumn
可行但在这种情况下使用 JoinColumns
并不起作用!如何访问数据?