带有 <systemPath> 标记的 Maven 项目 POM 中的条目未包含在生成的战争文件 WEB-INF\lib 文件夹中

Posted

技术标签:

【中文标题】带有 <systemPath> 标记的 Maven 项目 POM 中的条目未包含在生成的战争文件 WEB-INF\\lib 文件夹中【英文标题】:Enteries in Maven Project POM with <systemPath> tag does not get included in the generated war file WEB-INF\lib folder带有 <systemPath> 标记的 Maven 项目 POM 中的条目未包含在生成的战争文件 WEB-INF\lib 文件夹中 【发布时间】:2021-07-15 16:25:39 【问题描述】:

我添加了一些带有SystemPath标签的Maven依赖:

<dependency>
    <groupId>OFRestCallBroker</groupId>
    <artifactId>OFRestCallBroker</artifactId>
    <scope>system</scope>
    <version>1.0</version>
    <systemPath>$basedir\src\lib\OFRestCallBroker.jar</systemPath>
</dependency>

好的,所以跟随***线程之一 Add external library .jar to Spring boot .jar internal /lib

我更新到这个

<plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <includeSystemScope>true</includeSystemScope>
            </configuration>
        </plugin>
    </plugins>

但是当我生成 .war 文件时,这些依赖项不包含在 WEB-INF 文件夹中,并且生成了一个单独的 lib-provided 文件夹,但我仍然收到此错误 java.lang.NoClassDefFoundError。

因此,当我在 Tomcat 服务器上部署这些文件时。我收到java.lang.NoClassDefFoundError 错误。

我的 Spring Boot 版本&lt;version&gt;2.2.11.RELEASE&lt;/version&gt;

请帮助正确的方法并推荐一些示例

【问题讨论】:

SystemPath 范围的依赖项已弃用。此外,spring-boot-maven-pugin 的文档需要更改... @khmarbaise 你能告诉我,如何添加这些依赖项......代码 sn-p ***.com/questions/19065666/… 我对系统范围的体验是它在有趣的时候以神秘的方式破坏了,我建议您完全避免它,只需在本地安装必要的 jar。 @ThorbjørnRavnAndersen 好的,谢谢您的宝贵建议,会记住的。 【参考方案1】:

如 cmets 中所述,System 范围已弃用。最好的方法是使用像 jFrog artifactory 这样的工件管理器,或者在本地存储库 home-dir\.m2 中安装您喜欢的依赖项。

为此,您可以使用Maven install command:

mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>

假设我们有一个位于项目根目录src\lib\my.jar 中的my.jar 文件

然后将其作为常规dependency 添加到我的项目的dependencies

 <dependency>
            <groupId>a.b</groupId>
            <artifactId>my</artifactId>
            <version>9.0.0</version>
 </dependency>

但是,如果您想要一种自动方式将位于 src/lib 中的 jar 安装到本地存储库中,可以使用 Maven install plugin

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-install-plugin</artifactId>
    <executions>
        <execution>
            <id>install-external-non-maven-jar</id>
            <phase>clean</phase>
            <configuration>
                <repositoryLayout>default</repositoryLayout>
                <groupId>a.b</groupId>
                <artifactId>my</artifactId>
                <version>9.0.0</version>
                <file>$basedir/src/lib/my.jar</file>
                <packaging>jar</packaging>
                <generatePom>true</generatePom>
            </configuration>
            <goals>
                <goal>install-file</goal>
            </goals>
        </execution>
    </executions>
</plugin>

通过执行mvn clean 命令,my.jar 文件将被安装到本地仓库,然后通过mvn packagemvn install 命令执行,您的war 文件将被创建。

最终 pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.5</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>1.8</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>a.b</groupId>
            <artifactId>my</artifactId>
            <version>9.0.0</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-install-plugin</artifactId>
                <executions>
                    <execution>
                        <id>install-external-non-maven-jar</id>
                        <phase>clean</phase>
                        <configuration>
                            <repositoryLayout>default</repositoryLayout>
                            <groupId>a.b</groupId>
                            <artifactId>my</artifactId>
                            <version>9.0.0</version>
                            <file>$basedir/src/lib/my.jar</file>
                            <packaging>jar</packaging>
                            <generatePom>true</generatePom>
                        </configuration>
                        <goals>
                            <goal>install-file</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

【讨论】:

阿里扎德什,谢谢!!。如果我有多个系统范围的依赖项,那么我需要在执行中使用多个配置标签。 是的,因为每个jar文件都有自己的安装元数据 这是一种非常好的方法,但我希望这会在“maven clean”期间发生。可能是在构建阶段的早期。【参考方案2】:

如果您有公司 Nexus/Artifactory,请将依赖项放在那里。

否则使用mvn install:install-file将其安装到本地存储库中。

那么你就可以不使用系统作用域来引用它了。

【讨论】:

共享项目的临时解决方案是让构建自动安装工件。见***.com/q/10802280/53897 @ThorbjørnRavnAndersen 您只需要注意在第一次运行mvn clean install 之类的东西时,这将不起作用,因为在运行install-file 之前解决了依赖关系。 很久以前,但我不记得这是个问题。 依赖解析发生在任何插件运行之前。

以上是关于带有 <systemPath> 标记的 Maven 项目 POM 中的条目未包含在生成的战争文件 WEB-INF\lib 文件夹中的主要内容,如果未能解决你的问题,请参考以下文章

systemPath

Spring Boot——Maven使用SystemPath引用本地jar:ClassNotFoundException

带有两个输入字段和相关标记的简单 HTML 表单:

使用带有奇怪标记的 jQuery 手风琴

是否有必要使用带有 <div> 的结束标记来清除浮动? [复制]

带有 htmlText 的 Flash CS4 <b> 标记