嗨,我无法在 spring 中将数据从控制器显示到 jsp 页面,我是 spring 新手,这是我的控制器
List<DocDto> list =DocService.getDocs();
DocDto docList = new DocDto();
docList.setdocType(doc_type);
docList.setdocSubType(doc_subtype);
jobList.setTransactionId(transaction_id);
model.addAttribute("docList", docList);
这是我的jsp表
<c:forEach var="o" items="${list}">
<tr>
<td>
<c:out value="${o.doc_type}" /></td>
<td><c:out value="${o.doc_subtype}" /></td>
</td>
</tr>
这没有在我的 jsp 中显示任何数据,只是显示它的空白表。任何帮助,将不胜感激。