springcloud脚⼿架项⽬(⼆)模块化项⽬搭建以及maven分环境打包部署
前⾔
模块化搭建
现在的应⽤项⽬,都是追求⼀个模块化的概念,恰巧idea这个写代码⼯具的项⽬管理也是模块化的,和现在的情况如出⼀辙,很利于项⽬的管理。我觉得也是lide流⾏的原因之⼀吧。
还有⼀个不得不提的就是maven的,他对于项⽬的构建⾮常重要,我在⼤学写java项⽬的时候,还需要⾃⼰去⽹上把jar包下载下来,完全不知道maven,当时构建⼀个项⽬⾮常的痛苦,各种jar包依赖很折磨⼈,通过maven可以很⽅便的管理这些jar包,环境,以及最终的打包
项⽬分层
我把我的脚⼿架项⽬分为5个模块,如图所⽰:
通过继承关系来管理这⼏个模块
common:通⽤的⼯具类,配置类存放位置
dao:数据库连接层,只有数据集pojo和mapper⽂件
core:逻辑层,⽤于执⾏各种需要的逻辑
service:接⼝层,只有接⼝和返回值,别的都没有,⽤于微服务调⽤的jar包提供,所以在层级中可以看出是单独在那⾥的底层jar包之⼀,我在管理这⼀层的时候也是本着尽可能提供少的其他jar包⽽进⾏管理的,⽬前只有⼀个feign的jar
start:只有⼀个spring boot的start⽂件。⽤于项⽬启动
⽂件配置
如图所⽰,我们的项⽬由⼀个主pom管理所有的⼦pom⽂件,作为⼀个jar包的管理和使⽤。
<project xmlns="/POM/4.0.0"
xmlns:xsi="/2001/XMLSchema-instance"
xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion>
<groupId>com.chen</groupId>
<artifactId>SpringCloudScaffold</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>chen_common</module>
<module>chen_dao</module>
<module>chen_core</module>
<module>chen_service</module>
<module>chen_start</module>
</modules>
<!-- 常量定义 -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
&ding>UTF-8</ding>
<java.source.version>1.8</java.source.version>
<spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
<project-common.version>1.0.0-SNAPSHOT</project-common.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
<relativePath/>
</parent>
<dependencyManagement>
<dependencies>
maven打包本地jar包<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--本地jar-->
<dependency>
<groupId>com.chen</groupId>
<artifactId>chen_dao</artifactId>
<version>${project-common.version}</version>
</dependency>
<dependency>
<groupId>com.chen</groupId>
<artifactId>chen_common</artifactId>
<version>${project-common.version}</version>
</dependency>
<dependency>
<groupId>com.chen</groupId>
<artifactId>chen_core</artifactId>
<version>${project-common.version}</version>
</dependency>
<dependency>
<groupId>com.chen</groupId>
<artifactId>chen_service</artifactId>
<version>${project-common.version}</version>
</dependency>
<dependency>
<groupId>com.chen</groupId>
<artifactId>chen_start</artifactId>
<version>${project-common.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
举例2个⼀个⼦pom⽂件类型
common模块:
是最⾼层依赖jar包
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="/POM/4.0.0"
xmlns:xsi="/2001/XMLSchema-instance"
xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.0.xsd"> <parent>
<artifactId>SpringCloudScaffold</artifactId>
<groupId>com.chen</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>chen_common</artifactId>
<name>chen_common</name>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
</project>
start模块:
也是最底层依赖jar,只有⼀个spring boot启动类和各个环节的yml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="/POM/4.0.0"
xmlns:xsi="/2001/XMLSchema-instance"
xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.0.xsd"> <parent>
<artifactId>SpringCloudScaffold</artifactId>
<groupId>com.chen</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>chen_start</artifactId>
<name>chen_start</name>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.chen</groupId>
<artifactId>chen_core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<spring.profiles.active>dev</spring.profiles.active>
</properties>
</profile>
<profile>
<id>stg</id>
<properties>
<spring.profiles.active>stg</spring.profiles.active>
</properties>
</profile>
<profile>
<id>prd</id>
<properties>
<spring.profiles.active>prd</spring.profiles.active>
</properties>
</profile>
</profiles>
</project>
yml
spring:
profiles:
active: @spring.profiles.active@
配置说明
1.可以看到@spring.profiles.active@这个在l的配置⽂件其中的属性和start模块中maven中profiles的配置相互对应,每次maven进⾏install的时候回选择其中的⼀个配置填⼊对应的配置信息,我们⼀般分为本地,⽇常,预发,线上这样4个环境,然后idea也会很⼈性化的给你对应的profiles环境进⾏切换。这也是我们进⾏jenkins打包的时候会配置的启动命令,带上对应的profiles参数配置即可
2.build配置就是⽤于maven clean和install使⽤的
3.每⼀个⼦pom都有⼀个parent直接继承主pom,这样你在主pom中导⼊的jar包也可以在⼦pom中使⽤,idea也有⽅便的可以进⾏跳转,有利于jar包的调整
4.spring boot快速jar包引⼊可以通过主pom中的parent中连接到spring boot 2.0.3relese版本中对应的jar,这样在导⼊其他spring组件的时候不需要关⼼其对应的jar包版本了
项⽬地址

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。