你如何在spring mvc中加入twitter bootstrap?

时间:2015-10-04 12:06:49

标签: spring twitter-bootstrap spring-mvc

我有弹簧mvc在表单页面中提供的文本框和按钮如何在这些标签中包含twitter bootstrap。我在哪里将bootstrap相关文件放在文件夹结构中以及我需要使用哪个jar来使用bootstrap?

示例文本框是:

 <%@taglib uri="http://www.springframework.org/tags/form" prefix="form" %>               
 <form:form method="post" commandName="stdcmd">
 username:<form:form path="txtUname">
 password:<form:form path="txtPwd"> 
 <input type="submit" value="register"/>
 </form:form> 

1 个答案:

答案 0 :(得分:0)

要使用引导程序,您需要将引导程序文件放在Web文件夹中。例如,resources / bootstrap文件夹。然后在jsp中添加指向这些文件的链接:

<link rel='stylesheet' href='resources/bootstrap/bootstrap.min.css'>
<script type="text/javascript" src="resources/bootstrap/bootstrap.min.js"></script>

同样在你的spring配置文件中包含以下内容:

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

Check this link for more info

您应该能够从bootstrap访问类并应用于您的jsp。