# bootstrap-admin-spring-boot
**Repository Path**: jiangsonglin/bootstrap-admin-spring-boot
## Basic Information
- **Project Name**: bootstrap-admin-spring-boot
- **Description**: bootstrap-admin-springboot启动器,方便版本管理
- **Primary Language**: Java
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 0
- **Created**: 2024-01-16
- **Last Updated**: 2024-02-27
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# bootstrap-admin-spring-boot
https://gitee.com/ajiho/bootstrap-admin
#### 安装教程
```xml
com.jiangsonglin
bootstrap-admin-spring-boot-starter
与bootstrap-admin版本同步
```
在任意一个`@Configuration`类上使用`@EnableBootstrapAdmin`注解开启。
```java
@Configuration
@EnableBootstrapAdmin
public class ResourcesConfig {
}
```
## thymeleaf使用教程
1.引入依赖
```xml
org.springframework.boot
spring-boot-starter-thymeleaf
```
2.配置
```yaml
spring:
thymeleaf:
cache: false
prefix: classpath:/templates/
encoding: UTF-8 #编码
suffix: .html #模板后缀
mode: HTML #模板
```
引入资源示例:
```html
```