Spring 使用 Oauth2 和 Spring-boot-starter-parent 版本 2+ 启动 SSO

Spring boot SSO with Oauth2 and Spring-boot-starter-parent version 2+

我从 here

那里得到了一个简单好用的 SSO 示例项目

目前示例工作如下。

现在我的问题是示例使用 spring-boot-starter-parent 版本 1.5.9.RELEASE

该示例还使用了 spring-cloud 依赖项。我读到 spring-cloud 将不支持 spring-boot-starter-parent 版本 2 或更高版本。

所以我尝试从 app1 中删除 spring 云依赖,经过艰苦的尝试后我可以启动应用程序。我的新 pom 如下。

    <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

<groupId>com.shekhargulati</groupId>
<artifactId>app1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>app1</name>
<description>App1</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.6.RELEASE</version>
    <relativePath/>
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.security.oauth.boot</groupId>
        <artifactId>spring-security-oauth2-autoconfigure</artifactId>
        <version>2.1.1.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
    <dependency>
        <groupId>org.thymeleaf.extras</groupId>
        <artifactId>thymeleaf-extras-springsecurity4</artifactId>
        <version>2.1.3.RELEASE</version>
    </dependency>
</dependencies>

现在加载 app1 时,它将显示 sso 登录 window。但是登录成功后会报404错误

如果我在 sso-server 应用程序中做同样的更改,授权将不起作用。授权 API 将抛出 404。

请帮我解决这个问题。 我的需要是,让这个应用程序像 spring boot starter parent version 2+ 一样工作。

这是从上述问题中提供的 link 派生出来的 link for the code in github,它提供了您使用 Spring-Boot [=14] 所期望的所有功能=] 版本.

In the above code I have moved your code from Spring boot version 1.5.9.RELEASE to 2.1.3.RELEASE and Spring Cloud version from Edgware.SR1 to Finchley.SR1