赞
踩
通用模块主要用于定义一些各个微服务通用的实体类,工具类或者第三方依赖等。
File==>新建==>Other==>搜索Maven,选择Maven Module,然后Next
填写Module Name:elsa-common,点击Next
一直Next至FInish为止,创建完成,项目结构如下
因为我们刚刚在创建elsa-common模块的时候选择elsa-cloud作为父模块,父级elsa-cloud pom.xml会自动添加如下内容。
<modules>
<module>elsa-common</module>
</modules>
我们在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>
至此,通用模块也搭建完毕了,下篇文章我们将开始搭建微服务注册中心。
源码地址:通用模块源码
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。