eclipse是否可以扫描jar文件中的文件?
例如:
a.jar包含一个文件include.tagf
META-INF
resources
tagsdef
include.tagf包含几个taglib指令(自定义标签,spring,jstl,c等)
<%@ taglib prefix="mytags" tagdir="/mytagjar/mytags"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
现在,在一个将a.jar作为maven依赖项的项目中,如果我处理一些具有包含include.tagf的指令的jsp:
<%@ include file="/tagsdef/include.tagf" %>
我想为include.tagf中定义的taglib提供内容辅助,但它似乎不起作用。