1. 在需要的模块中引入jar包
2. 在此模块中的pom.xml 中引用
3. 要想打包部署服务器,需要在启动模块中添加配置信息
ps:启动模块要引用此模块才能将此一起jar打包部署
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.1.RELEASE</version>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>