springboot2.6.4对应的security pom依赖
时间: 2024-02-13 13:06:32 浏览: 164
基于SpringBoot2.6.4的电商系统源码.zip
5星 · 资源好评率100%
你可以使用以下的 pom 依赖来集成 Spring Boot 2.6.4 和 Spring Security:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>2.6.4</version>
</dependency>
```
这个依赖包含了 Spring Security 的所有必要依赖,并且适用于 Spring Boot 2.6.4 版本。
阅读全文