gpt4 book ai didi

java - Spring 方法存在于代码中,但不存在于 JAR 中

转载 作者:行者123 更新时间:2023-11-30 06:02:40 26 4
gpt4 key购买 nike

我想调用该方法:

https://github.com/spring-projects/spring-boot/blob/2.0.x/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ErrorProperties.java#L73

但它不可用。它甚至不存在于反编译的代码中。但它应该是这样,因为 JavaDoc 说它从 1.3.0 版本开始可用并且是公开的。我的版本是2.0.0,我还检查了1.5.4。我提供的链接适用于 2.0.x,在 GitHub 中它仍然存在。但在代码中它不可用,为什么?

POM:

<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>test</groupId>
<artifactId>test</artifactId>
<version>1.0-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>2.0.0.RELEASE</version>
</dependency>
</dependencies>


</project>

代码:

import org.springframework.boot.autoconfigure.web.ErrorProperties;

public class Test {

ErrorProperties errorProperties = new ErrorProperties();

public Test() {
//Cannot resolve method getWhitelabel()
errorProperties.getWhitelabel();
}
}

最佳答案

该方法不在2.0.0中,也不在2.0.3中,但在2.0.4(当前最新版本)中。

将您的 pom.xml 更改为:

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
</dependencies>

它会编译。

关于java - Spring 方法存在于代码中,但不存在于 JAR 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51968476/

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