为什么spring-oauth2没有起动器?

时间:2016-04-26 17:23:51

标签: spring spring-security oauth spring-boot oauth-2.0

我想使用spring-boot标准化我的项目,但奇怪的是没有找到使用spring oauth的起始pom。 Spring oauth已经停产?

1 个答案:

答案 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>