JSP无法链接css文件和js文件

时间:2014-11-04 08:30:23

标签: java javascript css jsp

我是jsp的新手。我正在使用netbeans的Glassfish服务器。问题是我可以将我的jsp文件与css和javascripts链接起来。这是我的文件结构的格式

Web Pages  
 --Web-Inf  
 --assets  
    --css   
     --style.css  
  --js  
 --jquery.js  
 --includes    
--header.jsp  
--footer.jsp  
--sidebar.jsp  
 --pages    
--home.jsp  
 --index.jsp    

这是我的index.jsp

中的代码
<%@include file="includes/header.jsp" %>

<%
    if (request.getParameter("page") == null) {
        %>
        <%@include file="pages/home.jsp" %>
        <%
    } else {
        %>

        <%
    }
%>

    <%@include file="includes/sidebar.jsp" %>
</div>

<!--Latest end-->

<%@include file="includes/footer.jsp" %>

这是我在header.jsp

中的代码
<link href="${pageContext.request.contextPath}/assets/css/bootstrap.min.css" rel="stylesheet">

1 个答案:

答案 0 :(得分:0)

您可以将相对网址用于index.jsp

<link href="assets/css/bootstrap.min.css" rel="stylesheet">