2023-06-13 16:37:18 +08:00

18 lines
382 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## spring-security
1. 首先在pom文件中增加依赖
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
```
2. 可选项在application.yml文件中配置默认的用户名密码
```yaml
spring:
security:
user:
name: xiaoyan159
password: xiaoyan159062
roles: admin
```