Spring MVC和Thymeleaf:如何从模板访问数据 - JoinColumns

时间:2017-07-31 07:29:40

标签: spring thymeleaf

我在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 并不起作用!如何访问数据?

0 个答案:

没有答案