如何使用 jsp:include 参数标记将 Object 传递到另一个 jsp 中
我正在尝试使用jsp:include标签将DTO对象从一个jsp发送到另一个jsp。但它总是将其视为字符串。我无法在包含的 jsp 文件中使用 DTO。
这是一个代码..
<c:forEach items="${attributeDTOList}" var="attribute" varStatus="status">
<jsp:include page="attributeSubFeatureRemove.jsp" >
<jsp:param name="attribute" value="${attribute}" />
</jsp:include>
</c:forEach>
属性子功能删除.jsp文件 ..
<c:set value="${param.attribute}" var="attribute" />
<c:forEach items="${attribute.subFeatures}" var="subAttribute">
<c:forEach items="${subAttribute.attributeValues}" var="subValue">
<c:if test="${ subValue.preSelectionRequired}">
<c:set var="replaceParams" value=":${subAttribute.name}:${subValue.name}" />
<c:set var="removeURL" value="${fn:replace(removeURL, replaceParams, '')}" />
</c:if>
</c:forEach>
<jsp:include page="attributeSubFeatureRemove.jsp">
<jsp:param name="subAttribute" value="${subAttribute}" />
</jsp:include>
</c:forEach>
在这里,我试图从param中获取属性值,它总是发送字符串类型值。有没有办法在属性SubFeatureRemove jsp文件中发送对象(DTO)?请帮忙。