gpt4 book ai didi

未加载 Maven 传递依赖项

转载 作者:行者123 更新时间:2023-12-05 05:07:55 26 4
gpt4 key购买 nike

问题:当我在另一个应用程序中导入自定义日志记录库的 jar 时,我希望自定义库包含对 slf4j 的依赖,而不必放置应用程序中的这种依赖性。

我有一个 Maven 项目 my-logger 依赖于 log4j-slf4j-impl,在 pom.xml我的记录器 :

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.12.1</version>
</dependency>

在我的 Spring Boot 项目 my-app 中,我导入了 my-logger :

<dependency>
<groupId>org.test</groupId>
<artifactId>my-logger</artifactId>
<version>100</version>
</dependency>

但在 IntelliJ 中,我在 org.test:my-logger:100

下看不到任何依赖关系

而且我必须在 my-app pom.xml 中添加一个 log4j-slf4j-impl 依赖项,否则我会得到一个

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder"

my-logger 的 pom.xml :

<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.test</groupId>
<artifactId>my-logger</artifactId>
<version>100</version>
<packaging>jar</packaging>
<name>my-logger</name>
<description>Logging app</description>

<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.12.1</version>
</dependency>

</dependencies>
</project>

my-app 的 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.1.3.RELEASE</version>
<relativePath/>
</parent>
<groupId>com.example</groupId>
<artifactId>my-app</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>my-app</name>
<description>Demo project for Spring Boot</description>

<properties>
<java.version>11</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.test</groupId>
<artifactId>my-logger</artifactId>
<version>100</version>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

最佳答案

我猜 spring-boot-starter-parentlog4j-slf4j-impl 的范围更改为类似 provided 的内容。您可以通过查看 mvn dependency:tree 来解决这个问题,您可以在其中找到 log4j-slf4j-impl 的结果范围和版本。

关于未加载 Maven 传递依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58698453/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com