本文介绍了如何在Spring MVC中使用Twitter Bootstrap的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我不明白为什么我的Spring MVC页面不显示自举样式。
I can't understand why my Spring MVC page don't huck up bootstrap styles.
我的hello.jsp
My 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>
我的目录项目结构:
任何想法如何正确添加引导程序?
Any ideas how to properly add bootstrap?
推荐答案
如果您使用的是Springs框架,则可以将这些行添加到dispatcher-servlet.xml中。
If you are using Springs framework you can add these line in dispatcher-servlet.xml
<mvc:resources mapping="/bootstrap/**" location="/resources/" />
这篇关于如何在Spring MVC中使用Twitter Bootstrap的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!