通过<scope>system</scope>依赖本地jar包时,要注意了!

在使用Maven的时候,如果我们要依赖一个本地的jar包的时候,通常都会使用system来处理。
例如:

//引用本地jar包
<dependency>
    <groupId>com.mytestgroupId>
    <artifactId>testartifactId>
    <version>1.0version>
    <scope>systemscope>
    <systemPath>${pom.basedir}/lib/test-1.0.jarsystemPath>
dependency>

如果你仅仅是这么做了,在你使用SpringBoot打包插件生成jar包的时候,你会发现这个jar包不会被打进去,进而出现错误。
这个就需要在maven插接中配置一个includeSystemScope属性:

<plugin>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-maven-pluginartifactId>
    <configuration>
    	
        <includeSystemScope>trueincludeSystemScope>
    configuration>
plugin>

maven的scope有哪些:

maven的scope一共包括:compile、runtime、test、system、provided、import

compile

<dependency>
 	<groupId>org.apache.httpcomponentsgroupId>
 	<artifactId>httpclientartifactId>
 	<version>4.4.1version>
 	<scope>compilescope>
dependency>

compile是默认值,当我们引入依赖时,如果标签没有指定,那么默认就是complie。
compile表示被依赖项目需要参与当前项目的编译,包括后续的测试,运行周期也参与其中,同时打包的时候也会包含进去。是最常用的,所以也是默认的。

runtime

<dependency>
   <groupId>mysqlgroupId>
   <artifactId>mysql-connector-javaartifactId>
   <version>5.1.46version>
   <scope>runtimescope>
 dependency>

runtime表示被依赖项目无需参与项目的编译,不过后期的测试和运行周期需要其参与。与compile相比,跳过编译而已。
数据库的驱动包一般都是runtime,因为在我们在编码时只会使用JDK提供的jdbc接口,而具体的实现是有对应的厂商提供的驱动(如mysql驱动),实在运行时生效的,所以这类jar包无需参与项目的编译。

test

<dependency>
   <groupId>junitgroupId>
   <artifactId>junitartifactId>
   <version>4.12version>
   <scope>testscope>
dependency>

test表示只会在测试阶段使用,在src/main/java里面的代码是无法使用这些api的,并且项目打包时,也不会将"test"标记的打入"jar"包或者"war"包。

system

<dependency>
    <groupId>com.mytestgroupId>
    <artifactId>testartifactId>
    <version>1.0version>
    <scope>systemscope>
    <systemPath>${basedir}/lib/test-1.0.jarsystemPath>
dependency>

system依赖不是由maven仓库,而是本地的jar包,因此必须配合systemPath标签来指定本地的jar包所在全路径。这类jar包默认会参与编译、测试、运行,但是不会被参与打包阶段。如果也想打包进去的话,需要在插件里做配置true,也就是我们本篇开题提到的问题。

provided

<dependency>
   <groupId>javax.servletgroupId>
   <artifactId>javax.servlet-apiartifactId>
   <version>4.0.1version>
   <scope>providedscope>
dependency>

provided表示的是在编译和测试的时候有效,在执行(mvn package)进行打包成war、jar包的时候不会加入,比如:servlet-api,因为servlet-api,tomcat等web服务器中已经存在,如果在打包进去,那么包之间就会冲突

import

<dependencyManagement>
  <dependencies>
	<dependency>
	    <groupId>org.springframework.bootgroupId>
	    <artifactId>spring-boot-dependenciesartifactId>
	    <version>2.1.1.RELEASEversion>
	    <type>pomtype>
	    <scope>importscope>
	dependency>
 dependencies>
dependencyManagement>

import比较特殊,他的作用是将其他模块定义好的 dependencyManagement 导入当前 Maven 项目 pom 的 dependencyManagement 中,都是配合pom来进行的。所以import作用的是pom类型,不是jar包。

你可能感兴趣的:(日常解决问题,maven,spring,boot)