OAuth 2.0实现分布式认证授权-工程搭建

Posted 健康平安的活着

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OAuth 2.0实现分布式认证授权-工程搭建相关的知识,希望对你有一定的参考价值。

一  父工程搭建

1.1 工程创建工程

创建父工程,然后配置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>
  <!-- springboot父 -->
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.3.RELEASE</version>
  </parent>
  <!-- 子模块 -->
  <modules>
    <module>spt-ds-uaa-server</module>
    <module>spt-ds-order-server</module>
  </modules>
  <!-- 当前工程gav 信息 -->
  <groupId>com.ljf.springsecurity.oauth</groupId>
  <artifactId>spt-ds-oauth-server<

以上是关于OAuth 2.0实现分布式认证授权-工程搭建的主要内容,如果未能解决你的问题,请参考以下文章

OAuth 2.0实现分布式认证授权-网关搭建

OAuth 2.0实现分布式认证授权

OAuth 2.0实现分布式认证授权-测试以及总结(10大结局)

OAuth 2.0实现分布式认证授权-认证服务器配置

OAuth 2.0实现分布式认证授权-授权的验证配置

OAuth 2.0实现分布式认证授权-客户单和授权码存储数据库