Spring Cloud云架构b2b2c电子商务- commonservice-sso服务搭建

本文档介绍了如何使用Spring Cloud和OAuth2搭建一个名为commonservice-sso的基础SSO(单点登录)服务。首先创建了一个Maven项目,并详细列出了pom.xml的配置,接着配置了bootstrap.yml文件和启动文件。同时,文中提到了需要创建的OAuth相关数据库表,如oauth_access_token等,这些表用于存储用户令牌和认证信息。
摘要由CSDN通过智能技术生成

今天我们要利用Spring Cloud和oauth2进行commonservice-sso服务搭建,本节我们只是搭建commonservice-sso的基础平台,闲话少说,直接将步骤记录下来:了解springcloud架构可以加求求:三五三六二四七二五九

  1. 创建maven项目commonservice-sso,其中pom.xml文件配置如下:
<?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>  
      
    <parent>  
        <groupId>com.ml.honghu</groupId>  
        <artifactId>commonservice</artifactId>  
        <version>0.0.1-SNAPSHOT</version>  
    </parent>  
  
    <artifactId>commonservice-sso</artifactId>  
    <packaging>jar</packaging>  
  
    <dependencies>  
        <dependency>  
            <groupId>org.springframework.cloud</groupId>  
            <artifactId>spring-cloud-starter-eureka</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.cloud</groupId>  
            <artifactId>spring-cloud-starter-config</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-actuator</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-data-rest</artifactId>  
        </dependency>  
        <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</groupId>  
            <artifactId>spring-security-oauth2</artifactId>  
        </dependency>  
  
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-test</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.hateoas</groupId>  
            <artifactId>spring-hateoas</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-data-rest</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>com.ml.honghu.common.framework</groupId>  
            <artifactId>common-framework-dao</artifactId>  
            <version>1.0.0-SNAPSHOT</version>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-web</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>org.springframework.boot</groupId>  
            <artifactId>spring-boot-starter-freemarker</artifactId>  
        </dependency>  
        <dependency>  
            <groupId>com.ml.honghu</groupId>  
            <artifactId>component-base</artifactId>  
        </dependency>  
        </dependency>  
    </dependencies>  
  
    <!-- 打包插件,其中repackage、true是专门打spring boot专用包 -->  
    <build>  
        <plugins>  
            <plugin>  
                <groupId>org.springframework.boot</groupId>  
                <artifactId>spring-boot-maven-plugin</artifactId>  
                <executions>  
                    <execution>  
                        <id>1</id>  
                        <goals>  
                            <goal>repackage</goal>  
                        </goals>  
                    </execution>  
                    <execution>  
                        <id>2</id>  
                        <goals>  
                            <goal>build-info</goal>  
                        </goals>  
                    </execution>  
                </executions>  
            </plugin>  
        </plugins>  
    </build>  
</project>  
  1. 配置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  
  1. 配置项目启动文件
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);  
    }  
}  
  1. 创建sso相关表:

oauth_access_token、oauth_approvals、

oauth_client_details、oauth_client_token、

oauth_code、oauth_refresh_token

/* 
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信息和认证信息的。

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
很高兴为您服务!以下是将jar包里的共通方法服务化的代码示例: 1. 在spring工程中添加以下依赖: ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web-services</artifactId> </dependency> ``` 2. 创建一个接口,定义服务方法: ```java public interface CommonService { public String commonMethod(String param); } ``` 3. 创建一个实现类,实现接口中的服务方法: ```java @Service @WebService(serviceName = "CommonService") public class CommonServiceImpl implements CommonService { @Override public String commonMethod(String param) { // 调用jar包中的共通方法 String result = CommonUtil.commonMethod(param); return result; } } ``` 4. 在启动类中添加以下注解,发布服务: ```java @EnableWs @SpringBootApplication public class Application extends SpringBootServletInitializer { @Bean public ServletRegistrationBean<MessageDispatcherServlet> messageDispatcherServlet() { MessageDispatcherServlet servlet = new MessageDispatcherServlet(); servlet.setApplicationContext(new AnnotationConfigApplicationContext()); servlet.setTransformWsdlLocations(true); return new ServletRegistrationBean<>(servlet, "/ws/*"); } @Bean(name = "CommonService") public DefaultWsdl11Definition defaultWsdl11Definition(XsdSchema commonSchema) { DefaultWsdl11Definition wsdl11Definition = new DefaultWsdl11Definition(); wsdl11Definition.setPortTypeName("CommonServicePort"); wsdl11Definition.setLocationUri("/ws"); wsdl11Definition.setTargetNamespace("http://example.com/common"); wsdl11Definition.setSchema(commonSchema); return wsdl11Definition; } @Bean public XsdSchema commonSchema() { return new SimpleXsdSchema(new ClassPathResource("common.xsd")); } public static void main(String[] args) { SpringApplication.run(Application.class, args); } } ``` 5. 创建common.xsd文件,定义服务的XML Schema: ```xml <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.com/common" targetNamespace="http://example.com/common" elementFormDefault="qualified"> <xs:element name="commonMethodRequest" type="tns:commonMethodRequest"/> <xs:element name="commonMethodResponse" type="tns:commonMethodResponse"/> <xs:complexType name="commonMethodRequest"> <xs:sequence> <xs:element name="param" type="xs:string"/> </xs:sequence> </xs:complexType> <xs:complexType name="commonMethodResponse"> <xs:sequence> <xs:element name="result" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:schema> ``` 6. 使用SOAPUI或浏览器访问http://localhost:8080/ws/CommonService.wsdl查看服务的WSDL定义。 希望这个代码示例能够帮助您!如果您有其他问题,请随时提出。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值