以 springboot 稳定版本举例
jdk | springboot | spring-authorization-server |
---|---|---|
8 | 2.7.18 | 0.4.5 |
17 | 3.0.13 | 1.0.5 |
17 | 3.1.12 | 开始支持 starter |
pom 依赖
<!-- 当前 boot 版本不支持 starter 时引入固定版本 -->
<dependency><groupId>org.springframework.security</groupId><artifactId>spring-security-oauth2-authorization-server</artifactId><version>${version}</version>
</dependency><!-- springboot 3.1.12 版本支持 starter -->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-oauth2-authorization-server</artifactId>
</dependency>