如何在springboot中使用bootstrap
时间: 2023-05-25 21:02:18 浏览: 368
基于Springboot2+Bootstrap3开发的动漫主题网站
5星 · 资源好评率100%
A:要在Spring Boot应用中使用Bootstrap,可以按照以下步骤进行操作:
1. 添加Bootstrap依赖:在pom.xml文件中添加Bootstrap CSS和JS的依赖。
```
<!-- Bootstrap CSS -->
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>5.0.0-beta3</version>
</dependency>
<!-- Bootstrap JS -->
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>5.0.0-beta3</version>
<type>jar</type>
<scope>runtime</scope>
</dependency>
```
2. 创建Spring Boot Controller:创建一个Controller类并使用@RequestMapping注释映射到路径。在方法中返回一个HTML文件。
```java
@Controller
public class MyController {
@RequestMapping(value="/",method=RequestMethod.GET)
public String index() {
return "index"; //此处返回的是HTML文件名
}
}
```
3. 创建HTML页面:在src/main/resources/templates目录下创建一个HTML文件,实现Bootstrap的布局和样式。
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spring Boot with Bootstrap</title>
<link rel="stylesheet"
href="https://cdn.bootcss.com/bootstrap/5.0.0-beta3/css/bootstrap.min.css"
integrity="sha384-..."> <!--Bootstrap CSS的CDN-->
</head>
<body>
<div class="container">
<h1>Hello, Bootstrap!</h1>
<div class="alert alert-primary" role="alert">
A simple primary alert—check it out!
</div>
<div class="alert alert-secondary" role="alert">
A simple secondary alert—check it out!
</div>
</div>
<script src="https://cdn.bootcss.com/bootstrap/5.0.0-beta3/js/bootstrap.min.js"
integrity="sha384-..."></script> <!--Bootstrap JS的CDN-->
</body>
</html>
```
4. 运行应用:使用Spring Boot插件运行应用程序。
```bash
mvn spring-boot:run
```
然后打开浏览器并输入地址 http://localhost:8080,即可看到使用Bootstrap样式的页面。
阅读全文