在我的 servlet 中:
request.setAttribute("list", myList);
在我的 Jsp 中:
<c:forEach var="item" items="${list}">
${item.name} and ${item.address}
</c:forEach>
如何在 IDE (IntelliJ) 中item.name
获得自动完成功能?item.address
我可以使用<jsp:useBean>
任何其他功能来明确“项目”的类型吗?