如何在JSP中使用twitter引导

我无法理解为什么我的jsp页面没有引导引导样式。

我的hello.jsp

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap 101 Template</title>
    <link href="<c:url value="/bootstrap/css/bootstrap.min.css"/>" rel="stylesheet">
</head>
<body>
<h1>Hello, world!</h1>

<div class="btn-group">
    <button type="button" class="btn btn-default">Left</button>
    <button type="button" class="btn btn-default">Middle</button>
    <button type="button" class="btn btn-default">Right</button>
</div>

<script src="<c:url value="/bootstrap/js/bootstrap.min.js"/>"></script>
</body>
</html>

我的目录项目结构:

在这里输入图像描述

任何想法如何正确添加bootstrap?


如果您正在使用Springs框架,则可以在dispatcher-servlet.xml中添加这些行

<mvc:resources mapping="/bootstrap/**" location="/resources/" />

尝试使用https://github.com/Mrdigs/Bootstrap.jsp

它是一个开源的JSP taglib,旨在简化,快速和有益于Bootstrap和JSP的工作。


这也是我使用BootStrap时遇到的问题。 在你所写的文件夹树中

    value="/bootstrap/css/bootstrap.min.css"

尝试

    value="bootstrap/css/bootstrap.min.css"

不使用'/'

链接地址: http://www.djcxy.com/p/19273.html

上一篇: How to use twitter bootstrap with JSP

下一篇: How much does function alignment actually matter on modern processors?