要在Spring項(xiàng)目中集成Bootstrap,您可以按照以下步驟進(jìn)行操作:
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>5.1.3</version>
</dependency>
src/main/resources/static
目錄下。您可以在application.properties
文件中配置靜態(tài)資源的位置:spring.mvc.static-path-pattern=/static/**
<link>
和<script>
標(biāo)簽引入Bootstrap的CSS和JS文件:<link rel="stylesheet" href="/static/webjars/bootstrap/5.1.3/css/bootstrap.min.css">
<script src="/static/webjars/bootstrap/5.1.3/js/bootstrap.min.js"></script>
通過以上步驟,您就可以在Spring項(xiàng)目中集成Bootstrap,并使用Bootstrap的樣式和組件來美化您的網(wǎng)頁。希望對(duì)您有幫助!