博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Cloud云架构 - commonservice-sso服务搭建(一)
阅读量:6620 次
发布时间:2019-06-25

本文共 7603 字,大约阅读时间需要 25 分钟。

hot3.png

前面几篇我们已经介绍了Spring Cloud和oauth2的知识点,今天我们要利用Spring Cloud和oauth2进行commonservice-sso服务搭建,本节我们只是搭建commonservice-sso的基础平台,闲话少说,直接将步骤记录下来:

1. 创建maven项目commonservice-sso,其中pom.xml文件配置如下:

4.0.0
com.ml.honghu
commonservice
0.0.1-SNAPSHOT
commonservice-sso
jar
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.cloud
spring-cloud-starter-config
org.springframework.boot
spring-boot-starter-actuator
org.springframework.boot
spring-boot-starter-data-rest
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-security
org.springframework.security.oauth
spring-security-oauth2
org.springframework.boot
spring-boot-starter-test
org.springframework.hateoas
spring-hateoas
org.springframework.boot
spring-boot-starter-data-rest
com.ml.honghu.common.framework
common-framework-dao
1.0.0-SNAPSHOT
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-freemarker
com.ml.honghu
component-base
org.springframework.boot
spring-boot-maven-plugin
1
repackage
2
build-info

 2. 配置bootstrap.yml文件

spring:    application:      name: commonservice-sso    profiles:       active: dev,discoveryClient    cloud:      config:        discovery:           enabled: true          service-id: commonservice-config-server  eureka:     client:      service-url:        defaultZone: http://honghu:123456@localhost:8761/eureka    instance:      prefer-ip-address: true

 

 3. 配置项目启动文件

package com.ml.honghu;    import org.springframework.boot.SpringApplication;  import org.springframework.boot.autoconfigure.SpringBootApplication;  import org.springframework.cloud.netflix.eureka.EnableEurekaClient;    @SpringBootApplication  @EnableEurekaClient  public class SSOApplication {      public static void main(String[] args) {          SpringApplication.run(SSOApplication.class, args);      }  }

 4. 创建sso相关表:

/* Navicat MySQL Data Transfer  Source Server         : localhost Source Server Version : 50621 Source Host           : localhost:3306 Source Database       : honghu  Target Server Type    : MYSQL Target Server Version : 50621 File Encoding         : 65001  Date: 2017-10-26 20:12:56 */    SET FOREIGN_KEY_CHECKS=0;    -- ----------------------------  -- Table structure for `oauth_access_token`  -- ----------------------------  DROP TABLE IF EXISTS `oauth_access_token`;  CREATE TABLE `oauth_access_token` (    `token_id` varchar(256) DEFAULT NULL,    `token` blob,    `authentication_id` varchar(128) NOT NULL,    `user_name` varchar(256) DEFAULT NULL,    `client_id` varchar(256) DEFAULT NULL,    `authentication` blob,    `refresh_token` varchar(256) DEFAULT NULL,    PRIMARY KEY (`authentication_id`)  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;      -- ----------------------------  -- Table structure for `oauth_approvals`  -- ----------------------------  DROP TABLE IF EXISTS `oauth_approvals`;  CREATE TABLE `oauth_approvals` (    `userId` varchar(256) DEFAULT NULL,    `clientId` varchar(256) DEFAULT NULL,    `scope` varchar(256) DEFAULT NULL,    `status` varchar(10) DEFAULT NULL,    `expiresAt` datetime DEFAULT NULL,    `lastModifiedAt` datetime DEFAULT NULL  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;    -- ----------------------------  -- Records of oauth_approvals  -- ----------------------------    -- ----------------------------  -- Table structure for `oauth_client_details`  -- ----------------------------  DROP TABLE IF EXISTS `oauth_client_details`;  CREATE TABLE `oauth_client_details` (    `client_id` varchar(128) NOT NULL,    `resource_ids` varchar(256) DEFAULT NULL,    `client_secret` varchar(256) DEFAULT NULL,    `scope` varchar(256) DEFAULT NULL,    `authorized_grant_types` varchar(256) DEFAULT NULL,    `web_server_redirect_uri` varchar(256) DEFAULT NULL,    `authorities` varchar(256) DEFAULT NULL,    `access_token_validity` int(11) DEFAULT NULL,    `refresh_token_validity` int(11) DEFAULT NULL,    `additional_information` varchar(4096) DEFAULT NULL,    `autoapprove` varchar(256) DEFAULT NULL,    PRIMARY KEY (`client_id`)  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;      -- ----------------------------  -- Table structure for `oauth_client_token`  -- ----------------------------  DROP TABLE IF EXISTS `oauth_client_token`;  CREATE TABLE `oauth_client_token` (    `token_id` varchar(256) DEFAULT NULL,    `token` blob,    `authentication_id` varchar(128) NOT NULL,    `user_name` varchar(256) DEFAULT NULL,    `client_id` varchar(256) DEFAULT NULL,    PRIMARY KEY (`authentication_id`)  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;    -- ----------------------------  -- Records of oauth_client_token  -- ----------------------------    -- ----------------------------  -- Table structure for `oauth_code`  -- ----------------------------  DROP TABLE IF EXISTS `oauth_code`;  CREATE TABLE `oauth_code` (    `code` varchar(256) DEFAULT NULL,    `authentication` blob  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;    -- ----------------------------  -- Records of oauth_code  -- ----------------------------    -- ----------------------------  -- Table structure for `oauth_refresh_token`  -- ----------------------------  DROP TABLE IF EXISTS `oauth_refresh_token`;  CREATE TABLE `oauth_refresh_token` (    `token_id` varchar(256) DEFAULT NULL,    `token` blob,    `authentication` blob  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

备注: oauth的相关表是用来存储用户的token信息和认证信息的。

本节搭建先搭建那么多,后面的业务代码太多,我们会在后面的章节中放出来。

从现在开始,我这边会将近期研发的spring cloud微服务云架构的搭建过程和精髓记录下来,帮助更多有兴趣研发spring cloud框架的朋友,大家来一起探讨spring cloud架构的搭建过程及如何运用于企业项目。完整项目的源码来源 技术支持1791743380

转载于:https://my.oschina.net/u/3826344/blog/1838775

你可能感兴趣的文章
《Python编程快速上手——让繁琐工作自动化》——1.4 在变量中保存值
查看>>
想改进你的卷积神经网络?看看这14种设计模式!
查看>>
安装完最小化 RHEL/CentOS 7 后需要做的 30 件事情(六)
查看>>
[LeetCode]--100. Same Tree
查看>>
阿里蒋晓伟谈流计算和批处理引擎Blink,以及Flink和Spark的异同与优势
查看>>
从Jetty、Tomcat和Mina中提炼NIO构架网络服务器的经典模式(一)
查看>>
Windows 10之 隐藏“此电脑”窗口的6个额外文件夹
查看>>
15.1异常处理
查看>>
初学者学习Linux之NFS
查看>>
Rabbitmq学习(一) Rabbitmq初探
查看>>
8月第一周B2B类网站排名:阿里巴巴持续领先
查看>>
IDC评述网:12月下旬国内域名注册商净增量Top10
查看>>
5月第一周全球域名解析商Top15:万网升至第7名
查看>>
3月第3周网络安全报告:被篡改.COM网站占74.3%
查看>>
java JSplitPane设置比例
查看>>
CXF WebService Hello World
查看>>
济南企业短信平台的价格如何?
查看>>
requirejs
查看>>
php printf() 输出格式化的字符串
查看>>
浅谈C中的指针和数组(二)
查看>>