是否可以在自定义标签类中包含包含 jstl 标签的 .jsp 文件(在我的特定情况下,使用标签文件不是一个选项)?例如,我需要创建自定义标签来绘制包含页面范围变量内容的表格。table.jsp 是:
<table>
<thead>
<tr>
<c:if test="${isAdmin }">
<th><fmt:message bundle="${prop}" key="orders.table.selected" /></th>
</c:if>
</tr>
more code here
<table>
我尝试使用pageContext.include()
方法包含此 jsp,但我在 html 页面上获得了所有 jstl 标记