org.hibernate.*
@Entity
@Table(name="hs")
public class HostSite {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;
@OneToMany(mappedBy="hostSite")
private List<HostSiteSection> sectionList;
Раздел узла хоста
@Entity
@Table(name="hsst")
public class HostSiteSection {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="hsid")
private HostSite hostSite;
Контроллер
screenObject.setSectionList(hostSite.getSectionList());
JSP
<c:if test="${screenObject!=null && screenObject.getSectionList()!=null}">
<c:forEach items="${screenObject.getSectionList()}" var="section">
<tr>
<td><a href="../hostSiteSection/${section.id}" target="_blank">${section.id}</a></td>
<td><a href="../hostSiteSection/${section.id}" target="_blank">${section.name}</a></td>
<td>${section.order}</td>
</tr>
</c:forEach>
</c:if>
Где он разваливается?В контроллере или jsp?В чем причина?Я пробовал и нетерпеливый и ленивый.