Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
除了通过 .tld 文件,还有其他可能的方法将标记文件(jstl 自定义标记)包含到 jsp 文件中吗?
是否可以使用包含机制?<jsp:include page="bla.tagx"/>
<jsp:include page="bla.tagx"/>
您不需要任何 .tld 文件即可使用作为标记文件实现的标记。标记必须简单地放在 下WEB-INF/tags,并在 JSP 中使用
WEB-INF/tags
<%@ taglib tagdir="/WEB-INF/tags" prefix="myTags" %>
更多信息在这里。