本项目为Springboot
的maven
多模块示例
common-module
为公共模块,可以放对外HTTP
接口的DTO
、常用的工具包等api-module
为API
模块,为对外HTTP
接口的服务实现
- master和boot-is-parent为父项目继承
Springboot
项目的示例 - boot-is-not-parent为父项目没有继承
Springboot
项目的示例,可以用于继承自定义的父项目
各个示例都只需要在springboot-multi-module-demo
所在的目录执行mvn clean package
即可完成打包,在springboot-multi-module-demo/api-module/target
目录下会有可执行的jar
包
- 使用
java -jar api-module-1.0-SNAPSHOT.jar
即可运行项目 - 在浏览器地址栏输入
http://127.0.0.1:8080/users
后按回车,可以看到页面上只有[]
,因为没有任何数据