我想使用spring-boot标准化我的项目,但奇怪的是没有找到使用spring oauth的起始pom。 Spring oauth已经停产?
答案 0 :(得分:1)
有效设置:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>