项目地址
https://gitee.com/jumper17/springboot-multi-project
0. 前言
我们需要建一个名字为multi的父项目,接下来在这个multi父工程上建立multi_common multi_dao multi_service multi_web 四个模块,在multi这个模块引用建立的四个子模块。 这四个子模块都是一个简单的SpringBoot项目。只是有几个子模块的配置文件和启动文件被删掉了,只需要留有一个配置文件和一个启动文件即可。
1. 创建父工程
1.1 创建工程
group是项目组织标识符
artifact是项目标识(项目名字)
什么都不选
自行选择项目位置
1.2 删除不需要的文件
将选中的文件删除
所剩文件
1.3 在pom.xml中新增一个打包方式为pom
<packaging>pom</packaging>
2. 创建子模块
在父项目上右键
2.1 创建multi_common
2.1.1 创建模块
group同父工程
artifact即该模块名字
package修改成自己喜欢的
2.1.2 删除不需要的文件
2.1.3 删除启动类和application.properties
需要删除的文件
删除后
删除提示如上
将其删除之后再将启动类和application.properties删除
2.2 创建multi_dao
2.2.1 创建模块
2.2.2 删除不需要的文件
同上
2.2.3 删除启动类和application.properties
同上
2.3 创建multi_service
2.3.1 创建模块
2.3.2 删除不需要的文件
同上
2.3.3 删除启动类和application.properties
同上
2.4 创建multi_web
2.4.1 创建模块
2.4.2 删除不需要的文件
同上
2.4.3 启动类和application.properties不删除
3. 配置模块之间的依赖关系
需要建立各个模块之间的依赖关系,multi_dao 依赖 multi_common,multi_service依赖 multi_dao, multi_web 依赖 multi_service.
3.1 总工程引入所有子模块
<modules>
<module>multi_common</module>
<module>multi_dao</module>
<module>multi_service</module>
<module>multi_web</module>
</modules>
3.2 multi_dao 的pom 文件中需要加入下面依赖
<dependency>
<groupId>com.jumper</groupId>
<artifactId>multi_common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
注意是在dependencies中不是在dependencyManagement中
3.3 multi_service 的pom 文件中需要加入下面依赖
<dependency>
<groupId>com.jumper</groupId>
<artifactId>multi_dao</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
同上
3.4 multi_web 的pom 文件中需要加入下面依赖
<dependency>
<groupId>com.jumper</groupId>
<artifactId>multi_service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
同上
至此项目基本搭建完成,可以修改application和编写业务类
4.测试项目
4.1 数据库
mysql的sql方便大家测试需要先建个数据库名为acade
create table `college` (
`collegeID` int (11),
`collegeName` varchar (600)
);
insert into `college` (`collegeID`, `collegeName`) values('1','计算机系');
insert into `college` (`collegeID`, `collegeName`) values('2','设计系');
insert into `college` (`collegeID`, `collegeName`) values('3','财经系');
4.2 multi_common 工具类
package com.jumper.common;
public class HelloHelp {
public String returnHello(){
return "hello";
}
}
随便写个类当做测试类
4.3 multi_dao 数据持久层
college类
package com.jumper.web.pojo;
public class College {
private int collegeID;
private String collegeName;
public College() {
}
public College(int collegeID, String collegeName) {
this.collegeID = collegeID;
this.collegeName = collegeName;
}
@Override
public String toString() {
return "College{" +
"collegeID=" + collegeID +
", collegeName='" + collegeName + '\'' +
'}';
}
public void setCollegeID(int collegeID) {
this.collegeID = collegeID;
}
public void setCollegeName(String collegeName) {
this.collegeName = collegeName;
}
public int getCollegeID() {
return collegeID;
}
public String getCollegeName() {
return collegeName;
}
}
mapper接口
package com.jumper.web.mapper;
import com.jumper.web.pojo.College;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
public interface CollegeMapper {
public List<College> getAll();
}
mapper.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.jumper.web.mapper.CollegeMapper">
<select id="getAll" resultType="com.jumper.web.pojo.College">
select * from college
</select>
</mapper>
4.4 multi_service 业务层
package com.jumper.web.service;
import com.jumper.web.pojo.College;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public interface CollegeService {
public List<College> getAll();
}
package com.jumper.web.service.impl;
import com.jumper.web.mapper.CollegeMapper;
import com.jumper.web.pojo.College;
import com.jumper.web.service.CollegeService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service
public class CollegeServiceImpl implements CollegeService {
@Resource
private CollegeMapper collegeMapper;
@Override
public List<College> getAll() {
return collegeMapper.getAll();
}
}
4.5 multi_web controller
package com.jumper.web.controller;
import com.jumper.common.HelloHelp;
import com.jumper.web.pojo.College;
import com.jumper.web.service.CollegeService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.List;
@RestController
public class CollegeController {
@Resource
private CollegeService collegeService;
@RequestMapping("/college")
public List<College> collegeList(){
return collegeService.getAll();
}
@RequestMapping("/hello")
public String hello(){
HelloHelp helloHelp = new HelloHelp();
return helloHelp.returnHello();
}
}
4.6 application.yml
server:
port: 8080
spring:
datasource:
url: jdbc:mysql://localhost:3306/acade?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai
username: root
password: 123456
driver-class-name: com.mysql.cj.jdbc.Driver
mybatis:
mapper-locations: classpath:mapper/*Mapper.xml
数据库部分自行修改
4.7 启动测试
测试成功