我正在尝试使用c:import和c:url导入JSP,但它告诉我它无法找到该文件。我尝试使用链接查看它是否打开文件,它工作正常。所以,我认为路径是正确的,但它不起作用。
我的代码是这样的:
<c:url value="/cabecalho.jsp" var="cabecalho" />
<c:import value="${cabecalho}"></c:import> //page don't open
<a href="${cabecalho}">link</a> //to test the path
如果我使用<c:url value="cabecalho.jsp" />
,它可以正常工作!
必须发生什么?
答案 0 :(得分:0)
c:url为您提供来自互联网的绝对路径,例如http://www.somehost.com
。 c:import需要服务器上jsp的相对路径。