Maven 架构选型,单模块还是多模块?
Posted Java技术栈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven 架构选型,单模块还是多模块?相关的知识,希望对你有一定的参考价值。
作者:AMOS0626
来源:https://my.oschina.net/AmosWang/blog/4951326
1. 单模块
优势
快速上手,前期开发效率高。
劣势
要想实现传统的三层架构(web/service/dao
),多采用分包,分包带来个问题就是,包之间边界约束不够。
正常来说,三层架构之间是有依赖关系的,dao --> service --> web
,依赖是单向的。
举个例子:前端请求的 xxxRequest
应该放哪呢,放 web
还是 service
,放 web
的话,service
应该是不能访问的,所以怎么约束呢?
再极端一点,dao
不能调用 service
吧,但项目中最不缺的就是临时方案,所以怎么约束呢?
2. 多模块(重点来了)
优势
约束能力,模块间引用关系是明确的,项目架构更清晰。
劣势
简单说,从头搭着可能慢点,用上模板都差不多。
首推阿里COLA:https://github.com/alibaba/COLA
本人结合 阿里COLA4.0 实现了一个,模块结构如下
think-cola
- start(启动项目)
- think-client(api、dto)
- think-controller(controller,调用app)
- think-app(校验、封装、执行,调用domain、infrastructure)
- think-domain(DDD 领域模型,也可暴露接口,由infrastructure实现)
- think-infrastructure(db、rpc、search、防腐)
项目地址:https://github.com/AmosWang0626/think-cola
3. 怎么选?
作为应用级架构,小项目,2~3个人开发的,单模块可能就足够,前提是每个人都对架构有认识,个人约束力很重要;
其他均建议多模块,长期来看,约束是第一生产力,架构直接影响重构的成本。
引用《代码精进之路:从码农到工匠》中的两段话结尾:
- 要记住,留给公司一个方便维护、整洁优雅的代码库,是我们技术人员最高技术使命,也是我们对公司做出的最大技术贡献;
- 【防止破窗】首先我们要有一套规范,并尽量遵守规范,不要做“打破第一扇窗”的人;其次,发现“破窗”要及时修复,不要让问题进一步恶化。
近期热文推荐:
1.1,000+ 道 Java面试题及答案整理(2021最新版)
2.别在再满屏的 if/ else 了,试试策略模式,真香!!
3.卧槽!Java 中的 xx ≠ null 是什么新语法?
4.Spring Boot 2.5 重磅发布,黑暗模式太炸了!
觉得不错,别忘了随手点赞+转发哦!
带有 Spring Boot 的多模块 Web 应用程序 Maven 架构
【中文标题】带有 Spring Boot 的多模块 Web 应用程序 Maven 架构【英文标题】:Multi module web application maven architecture with Spring boot 【发布时间】:2019-08-13 05:22:12 【问题描述】:我正在构建一个包含多个模块的 Web 应用程序,并且我想将这些模块中的每一个拆分为一个项目。这是我第一次尝试做这样的事情,我曾经在一个项目中制作应用程序,我不想以错误的架构开始开发。 我想做什么:
--Maven parent project
-- main app: Spring boot, Database connection, authentication, user management.
-- Module 1,2 .. n: modules, repositories, controllers
因此,我们的想法是从用例角度按功能拆分项目。问题是:这个架构可以正常工作吗?如何使用 maven 进行配置?
【问题讨论】:
你可能需要先参考这个spring.io/guides/gs/multi-module 【参考方案1】:你需要这样的东西:
1) 有一个父 pom 将所有内容组合在一起,这是您的父级,它有一个 spring-boot 的父级:
<?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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.3.RELEASE</version>
</parent>
<groupId>com.essexboy</groupId>
<artifactId>boot-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>boot-library</module>
<module>boot-web</module>
</modules>
</project>
2) 拥有任意数量的库模块:
<?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>
<artifactId>boot-parent</artifactId>
<groupId>com.essexboy</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>boot-library</artifactId>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
3) 然后拥有任意数量的 Spring Boot 模块,以便从同一个项目中提取所需的库:
<?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>
<artifactId>boot-parent</artifactId>
<groupId>com.essexboy</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>boot-web</artifactId>
<dependencies>
<dependency>
<groupId>com.essexboy</groupId>
<artifactId>boot-library</artifactId>
<version>$project.version</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- tag::actuator[] -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- end::actuator[] -->
<!-- tag::tests[] -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- end::tests[] -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
【讨论】:
以上是关于Maven 架构选型,单模块还是多模块?的主要内容,如果未能解决你的问题,请参考以下文章
带有 Spring Boot 的多模块 Web 应用程序 Maven 架构