springboot中引入bootstrap框架
时间: 2023-10-06 15:08:30 浏览: 100
要在Spring Boot中使用Bootstrap框架,可以按照以下步骤操作:
1. 在web项目的pom.xml文件中添加Bootstrap依赖:
```xml
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>3.3.7</version>
</dependency>
```
2. 在HTML文件中引入Bootstrap样式和脚本:
```html
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Example</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/webjars/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="/webjars/jquery/3.2.1/jquery.min.js"></script>
<script src="/webjars/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1>Hello, world!</h1>
<p>This is a Bootstrap example.</p>
</div>
</body>
</html>
```
请注意,这里使用了WebJars来管理Bootstrap依赖项。WebJars是一个将Web库打包为JAR文件的项目,并将其发布到Maven中央存储库中的项目。这使得在Maven项目中使用这些Web库变得非常容易。
阅读全文