要在Spring项目中集成Bootstrap,您可以按照以下步骤进行操作:
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>5.1.3</version>
</dependency>
src/main/resources/static
目录下。您可以在application.properties
文件中配置静态资源的位置:spring.mvc.static-path-pattern=/static/**
<link>
和<script>
标签引入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项目中集成Bootstrap,并使用Bootstrap的样式和组件来美化您的网页。希望对您有帮助!