当前位置:   article > 正文

从零开始搭建微服务:通用模块搭建_微服务的通用登录模块怎么搞

微服务的通用登录模块怎么搞

通用模块主要用于定义一些各个微服务通用的实体类,工具类或者第三方依赖等。

新建通用模块

新建 Maven Module

File==>新建==>Other==>搜索Maven,选择Maven Module,然后Next
在这里插入图片描述

填写Module Name

填写Module Name:elsa-common,点击Next
在这里插入图片描述
一直Next至FInish为止,创建完成,项目结构如下
在这里插入图片描述

父级Elsa-Cloud pom.xml

因为我们刚刚在创建elsa-common模块的时候选择elsa-cloud作为父模块,父级elsa-cloud pom.xml会自动添加如下内容。

	<modules>
		<module>elsa-common</module>
  	</modules>
  • 1
  • 2
  • 3

elsa-common pom配置

我们在elsa-common模块的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">
    <parent>
        <artifactId>elsa-cloud</artifactId>
        <groupId>com.elsa</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>elsa-common</artifactId>
    <name>Elsa-Common</name>
    <description>Elsa-Common通用模块</description>

    <dependencies>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.51</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-oauth2</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-security</artifactId>
        </dependency>
    </dependencies>
</project>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

至此,通用模块也搭建完毕了,下篇文章我们将开始搭建微服务注册中心。

源码下载

源码地址:通用模块源码

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号