本文摘自PHP中文网,作者angryTom,侵删。

如果你想了解更多关于bootstrap的知识,可以点击:bootstrap教程
首先 需要在 application.properties 文件中添加这句
1 | spring.mvc.static-path-pattern=/**
|

不然是使用不了的
还有一种办法就是 使用bootstrap的cdn地址,不怕麻烦的话,【斜脸笑】,建议还是使用以上方式
示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <!DOCTYPE html>
< html >
< head >
< meta charset = "UTF-8" >
< title >Bootstap demo </ title >
< link rel = "stylesheet" href = "/css/bootstrap.min.css" >
</ head >
< body >
< nav aria-label = "Page navigation" >
< ul class = "pagination" >
< li >
< a href = "#" aria-label = "Previous" >
< span aria-hidden = "true" >«</ span >
</ a >
</ li >
< li >< a href = "#" >1</ a ></ li >
< li >< a href = "#" >2</ a ></ li >
< li >< a href = "#" >3</ a ></ li >
< li >< a href = "#" >4</ a ></ li >
< li >< a href = "#" >5</ a ></ li >
< li >
< a href = "#" aria-label = "Next" >
< span aria-hidden = "true" >»</ span >
</ a >
</ li >
</ ul >
</ nav >
</ body >
</ html >
|
效果图:

以上就是springboot怎么用bootstrap的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
bootstrap4和bootstrap3的区别是什么
详解bootstrap自定义侧边导航栏的方法
bootstrap怎么实现自适应
如何解决360浏览器不兼容bootstrap问题
bootstrap table使用方法汇总
bootstrap如何设置页面回到顶端悬停提示
bootstrap怎么设置背景图片自适应
layui和bootstrap的区别
bootstrap该怎么安装
bootstrap ace是什么
更多相关阅读请进入《springBoot》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » springboot怎么用bootstrap