⛰️个人主页: 蒾酒
🔥系列专栏:《spring boot实战》
目录
写在前面
上文衔接
Common模块
DAO模块
Service模块
Web模块
API模块
写在最后
写在前面
本文介绍了springboot开发后端服务,多模块项目工程搭建,各模块的常用依赖整合以及目录结构创建。坚持看完相信对你有帮助。
同时欢迎订阅springboot系列专栏,持续分享spring boot的使用经验。
上文衔接
上文链接:
spring boot3多模块项目工程搭建-上(团队开发模板)_多个module的springboot3项目配置-CSDN博客https://blog.csdn.net/qq_62262918/article/details/138279618?spm=1001.2014.3001.5501https://blog.csdn.net/qq_62262918/article/details/138279618?spm=1001.2014.3001.5501上文已经初步搭建spring boot多模块聚合工程,并成功运行。下面开始各模块目录结构搭建,常用依赖整合。
Common模块
本模块主要放通用工具类和方法,通用配置,异常处理,常量定义,实体类,公共组件,自定义注解等。
目录结构示例:
常用依赖:
<!-- 引入lombok -->
<dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId>
</dependency><!-- 引入参数校验依赖 -->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-validation</artifactId>
</dependency><!-- 引入jwt依赖 -->
<dependency><groupId>io.jsonwebtoken</groupId><artifactId>jjwt</artifactId><version>0.9.1</version>
</dependency><!-- 如果jdk大于1.8,则还需导入以下依赖 -->
<dependency><groupId>javax.xml.bind</groupId><artifactId>jaxb-api</artifactId><version>2.3.1</version>
</dependency>
具体依赖根据项目实际添加
DAO模块
本模块负责与数据库进行交互,执行数据访问操作,主要放mapper和实体类
目录结构示例:
常用依赖:
<!-- mybatis-plus -->
<dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus-boot-starter</artifactId><version>3.5.5</version><exclusions><exclusion><groupId>org.mybatis</groupId><artifactId>mybatis-spring</artifactId></exclusion></exclusions>
</dependency><!-- mybatis -->
<dependency><groupId>org.mybatis</groupId><artifactId>mybatis-spring</artifactId><version>3.0.3</version>
</dependency><!-- mysql驱动 -->
<dependency><groupId>com.mysql</groupId><artifactId>mysql-connector-j</artifactId><version>8.2.0</version><scope>runtime</scope>
</dependency><!-- mybatis-plus代码生成器 -->
<dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus-generator</artifactId><version>3.5.5</version>
</dependency><!-- 代码生成使用模板 -->
<dependency><groupId>org.apache.velocity</groupId><artifactId>velocity-engine-core</artifactId><version>2.3</version>
</dependency><!-- druid数据库连接池 -->
<dependency><groupId>com.alibaba</groupId><artifactId>druid-spring-boot-3-starter</artifactId><version>1.2.20</version>
</dependency><!-- 引入common模块 -->
<dependency><groupId>com.mijiu</groupId><artifactId>common</artifactId>
</dependency>
这里仅仅引入了mybatis/plus相关的所有依赖并未进行相关配置,配置可以参考:
Spring Boot3整合MyBatis Plus_springboot3整合mybatis-plus-CSDN博客https://blog.csdn.net/qq_62262918/article/details/135734561?spm=1001.2014.3001.5501这篇是基于单模块结构整合的,多模块结构的整合就是放在对应模块即可。
Service模块
本模块包含应用程序的业务逻辑,负责处理业务规则和数据处理。主要放业务接口以及实现类
目录结构示例:
常用依赖:
<!-- 引入dao模块 -->
<dependency><groupId>com.mijiu</groupId><artifactId>dao</artifactId>
</dependency>
实际根据项目需求进行添加即可
Web模块
本模块负责处理请求,主要放控制类和web相关配置类以及web服务启动类
目录结构示例:
常用依赖:
<!-- web组件 -->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId>
</dependency><!--测试组件-->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope>
</dependency><!-- service模块 -->
<dependency><groupId>com.mijiu</groupId><artifactId>service</artifactId>
</dependency>
API模块
本模块用于定义应用程序的外部接口,一般放外部接口请求、响应、封装(收口简化调用),错误码、状态码枚举等
目录结构示例:
常用依赖:
<!-- okhttp3 依赖 -->
<dependency><groupId>com.squareup.okhttp3</groupId><artifactId>okhttp</artifactId><version>4.12.0</version>
</dependency><!-- 引入common模块 -->
<dependency><groupId>com.mijiu</groupId><artifactId>common</artifactId>
</dependency>
写在最后
spring boot3多模块项目工程搭建各模块目录结构搭建,常用依赖引入到这里就结束了。任何问题评论区或私信讨论,欢迎指正