web-inf 目录下的jsp怎么引用外部文件:js,css等

web-inf是受保护的,不能直接访问
下面是解决方法

<c:set value="${pageContext.request.contextPath}" var="path" scope="page"/>
<script type="text/javascript" src=" ${path}/js/jquery-1.8.1.min.js"></script>
<script type="text/javascript" src="${path}/js/jquery.datepick.js"></script>
<script type="text/javascript" src="${path}/js/jquery.datepick-zh-CN.js"></script>
<link type="text/css" href="${path}/css/smoothness.datepick.css" rel="stylesheet">

ok了。。

你可能感兴趣的:(web-inf js css)