簡體   English   中英

引導程序不適用於 jsp

[英]bootstrap doesn't work with jsp

我正在嘗試為我的 jsp 頁面連接 min lib css bootstrap。 但什么也沒發生。 我的建議:jsp 頁面:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<%@ page session="false"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../../css/bootstrap.min.css">
<script src="../../js/bootstrap.min.js"></script>
</head>
<body>

<h3>Tests List</h3>
<button type="submit" class="btn btn-info">
    <span class="glyphicon glyphicon-search"></span> Search
</button>
<c:if test="${!empty listTests}">
    <table class="table table-striped">
        <thead>
            <tr>
                <th width="25">Test ID</th>
                <th width="80">Test Name</th>
                <th width="80">Test Author</th>
                <th width="120">Test Description</th>
                <th width="60">Test IsFree</th>
                <th width="120">Test Comment to Admin</th>
                <th width="120">Test Section</th>
                <th width="120">Test Status</th>
                <th width="60">Review</th>
                <th width="60">Delete</th>
            </tr>
        </thead>
        <c:forEach items="${listTests}" var="test">
            <tr>
                <td>${test.id}</td>
                <td>${test.name}</td>
                <td>${test.author}</td>
                <td>${test.description}</td>
                <td>${test.isFree}</td>
                <td>${test.commentToAdmin}</td>
                <td>${test.section}</td>
                <td>${test.status}</td>
                <td><a href="<c:url value='/tests/review/${test.id}' />">Review</a></td>
                <td><a href="<c:url value='/tests/remove/${test.id}' />">Delete</a></td>
            </tr>
        </c:forEach>
    </table>
</c:if>
</body>
</html>

我的文件夾層次結構:

文件夾

你怎么看 - 在代碼中我連接了 css 和 js 文件。 但是我得到了結果(是的,我用數據庫加載的信息):結果

嘗試對文件使用絕對引用。

<link rel="stylesheet" href="/css/bootstrap.min.css">
<script src="/js/bootstrap.min.js"></script>

而不是從JSP的相對路徑指向,而是從項目的根目錄(即webapp使用絕對路徑。

<link rel="stylesheet" href="/css/bootstrap.min.css">
<script src="/js/bootstrap.min.js"></script>

在 JSP 中,您應該添加上下文路徑以使其工作:

<link rel="stylesheet" href="<%=request.getContextPath()%>/css/bootstrap.min.css">

<script src="<%=request.getContextPath()%>/js/bootstrap.min.js"></script>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM