从零开始搭建微服务:父模块搭建

首先我们使用Myeclipse创建一个名称为Elsa-Cloud的 Maven模块,该模块为整个工程的服务模块,用于聚合各个微服务子系统。

新建父模块

File==>新建==>Other==>搜索Maven,选择Maven Project

从零开始搭建微服务:父模块搭建_第1张图片

点击Next

从零开始搭建微服务:父模块搭建_第2张图片

所有都默认,继续点击Next

从零开始搭建微服务:父模块搭建_第3张图片

选择quickstart,点击Next

从零开始搭建微服务:父模块搭建_第4张图片

如上图所示填写GroupId及ArtifactId,点击Finish,创建完项目如下图

从零开始搭建微服务:父模块搭建_第5张图片
因为Elsa-Cloud模块是项目的父模块,仅用于聚合子模块,所以我们可以把上图红色标识框内的所有目录内容删除,仅保留pom.xml,然后修改pom.xml。

配置父模块

修改pom.xml,配置所需依赖

引入Spring Boot和Spring Cloud


<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.0modelVersion>

	<groupId>com.elsagroupId>
	<artifactId>elsa-cloudartifactId>
	<version>1.0-SNAPSHOTversion>
	<packaging>pompackaging>

	<name>Elsa-Cloudname>
	<description>Elsa-Cloud:Spring Cloud,Spring Security OAuth2 微服务权限管理系统description>

	<parent>
		<groupId>org.springframework.bootgroupId>
		<artifactId>spring-boot-starter-parentartifactId>
		<version>2.1.6.RELEASEversion>
		<relativePath/>
	parent>

	<properties>
		<spring-cloud.version>Greenwich.SR1spring-cloud.version>
		
		<maven-jar-plugin.version>3.0.0maven-jar-plugin.version>
	properties>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.springframework.cloudgroupId>
				<artifactId>spring-cloud-dependenciesartifactId>
				<version>${spring-cloud.version}version>
				<type>pomtype>
				<scope>importscope>
			dependency>
		dependencies>
	dependencyManagement>
project>

上面的pom配置中,我们指定了packaging为pom,表示这是一个纯聚合模块,无需打包为jar或者war;name指定为Elsa-Cloud;引入了Spring Boot 2.1.6.RELEASE和Spring Cloud Greenwich.SR1。

至此,父模块搭建完毕,在接下来文章中我们将开始搭建通用模块Elsa-common。

源码下载

源码地址:父模块源码

你可能感兴趣的:(从零开始搭建微服务,微服务,spring,cloud)