spring-boot 项目引入第三方依赖,如何打包

项目环境:

  1. spring-boot
  2. maven多模块项目
  3. 需要引入的外部jar包

目录结构图如下:

spring-boot 项目引入第三方依赖,如何打包_第1张图片

方式一, 打war包:

1. 在对应子模块的pom.xml文件中引入jar包,本例因为在common和web 模块都引入了,因此则都需要分分别引入,common的pom.xml配置如下:

spring-boot 项目引入第三方依赖,如何打包_第2张图片
groupId、artifactId、version都是可以自己随意填的,当然最好还是按照一定得规律填写,方便区分,上图中红框中的部分就是需要特别注意的地方,scope 只能填写 system,systemPath则填写被引入jar包在项目中的位置。

注意:
${project.basedir}${basedir}都表示项目根目录,即包含pom.xml文件的目录,这两个都是maven预定义的内置属性,用户可以直接使用。

commonpom.xml的全部内容:

<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">
    <parent>
        <artifactId>libii-identityartifactId>
        <groupId>com.libii.ssogroupId>
        <version>0.0.1-SNAPSHOTversion>
    parent>
    <modelVersion>4.0.0modelVersion>
    <artifactId>commonartifactId>

    <dependencies>
        <dependency>
            <groupId>com.libii.ssogroupId>
            <artifactId>bcprov-jdk16-1.46.jarartifactId>
            <version>0.0.1-SNAPSHOTversion>
            <scope>systemscope>
            <systemPath>${basedir}/lib/bcprov-jdk16-1.46.jarsystemPath>
        dependency>
        <dependency>
            <groupId>com.libii.ssogroupId>
            <artifactId>commons-beanutils-1.8.0.jarartifactId>
            <version>0.0.1-SNAPSHOTversion>
            <scope>systemscope>
            <systemPath>${basedir}/lib/commons-beanutils-1.8.0.jarsystemPath>
        dependency>
    dependencies>
project>

2. 配置web模块pom.xml


<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">
    <parent>
        <artifactId>libii-identityartifactId>
        <groupId>com.libii.ssogroupId>
        <version>0.0.1-SNAPSHOTversion>
    parent>
    <modelVersion>4.0.0modelVersion>
    <artifactId>webartifactId>
     
    <packaging>warpackaging>

    
    <properties>
        <skipTests>trueskipTests>
    properties>
    <dependencies>
        
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-tomcatartifactId>
            <scope>providedscope>
        dependency>
        <dependency>
            <groupId>com.libii.ssogroupId>
            <artifactId>commonartifactId>
            <version>0.0.1-SNAPSHOTversion>
            <scope>compilescope>
        dependency>
        <dependency>
            <groupId>com.libii.ssogroupId>
            <artifactId>backendartifactId>
            <version>0.0.1-SNAPSHOTversion>
            <scope>compilescope>
        dependency>
        
        
		<dependency>
            <groupId>com.libii.ssogroupId>
            <artifactId>junit-4.12.jarartifactId>
            <version>0.0.1-SNAPSHOTversion>
            <scope>systemscope>
            <systemPath>${basedir}/lib/junit-4.12.jarsystemPath>
        dependency>
    dependencies>
    
    <build>
        <finalName>identityfinalName>
        <plugins>
            <plugin>
           		
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-war-pluginartifactId>
                <configuration>
                    <webResources>
                    	
                    	
                        <resource>
                            <directory>libdirectory>
                            <targetPath>WEB-INF/lib/targetPath>
                            <includes>
                                <include>**/*.jarinclude>
                            includes>
                        resource>
                        
                        <resource>
                        	
                            <directory>../common/libdirectory>
                            <targetPath>WEB-INF/lib/targetPath>
                            <includes>
                                <include>**/*.jarinclude>
                            includes>
                        resource>
                    webResources>
                configuration>
            plugin>
            
            
        plugins>
    build>
project>

使用误区:

1. 将jar包只放在web层,如果是其他子模块需要使用时候,则编译会出问题。
2. 将jar包只放在使用的模块,很多人会出现打包打不进去,因为你配置打包插件时没有使用子模块的相对路径,默认会使用当前模块的地址,
3. web模块和使用的模块都引入一次,打包能成功,使用也没问题,但是你不觉得很冗余吗,不够优雅。
最佳的方式:只在使用的模块引入jar包,在web层的pom.xml中配置子模块的jar包资源路径就行了

方式二, 打jar包:

1. 在用到此jar包的模块引入,同方式一的第一点类似。
2. 修改web模块的打包方式为 jar
3. 为打包插件配置configuration属性
<plugin>
 	<groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-maven-pluginartifactId>
    <configuration>
        <executable>trueexecutable>
        <includeSystemScope>trueincludeSystemScope>
    configuration>
plugin>

web模块完整的pom.xml文件:


<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">
    <parent>
        <artifactId>libii-identityartifactId>
        <groupId>com.libii.ssogroupId>
        <version>0.0.1-SNAPSHOTversion>
    parent>
    <modelVersion>4.0.0modelVersion>
    <artifactId>webartifactId>
    <packaging>jarpackaging>
    <dependencies>
        
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-devtoolsartifactId>
            <optional>trueoptional>
        dependency>
        <dependency>
            <groupId>com.libii.ssogroupId>
            <artifactId>commonartifactId>
            <version>0.0.1-SNAPSHOTversion>
            <scope>compilescope>
        dependency>
        <dependency>
            <groupId>com.libii.ssogroupId>
            <artifactId>backendartifactId>
            <version>0.0.1-SNAPSHOTversion>
            <scope>compilescope>
        dependency>

        
        <dependency>
            <groupId>com.libii.ssogroupId>
            <artifactId>junit-4.12.jarartifactId>
            <version>0.0.1-SNAPSHOTversion>
            <scope>systemscope>
            <systemPath>${basedir}/lib/junit-4.12.jarsystemPath>
        dependency>
    dependencies>
    <build>
        <finalName>identityfinalName>
        <plugins>
           <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
                <configuration>
                    <executable>trueexecutable>
                    <includeSystemScope>trueincludeSystemScope>
                configuration>
            plugin>
        plugins>
    build>
project>

参考博客:https://blog.csdn.net/J080624/article/details/81505937

你可能感兴趣的:(Java)