gpt4 book ai didi

java - 打开移位 : maven compiler error : Base64 can not find the symbol

转载 作者:行者123 更新时间:2023-11-30 03:19:50 26 4
gpt4 key购买 nike

我正在将 webapp 部署到 openshift 云。

部署后maven自动编译资源时,显示Base64: symbol not find但是,当我在我的电脑上进行 Maven 编译时,它们没有错误并且构建成功。我尝试将 Base64java.util 更改为 apache.commons.codecs。部署时错误仍然存​​在,并且在我的本地计算机上成功运行

以下是pom.xml

           <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>

<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.4</version>
</dependency>

Should I place the commons-codec jar in WEB_INF directory. i read the solution somewhere but was not sure about it. please suggest a solution. Thank you

</dependencies>

最佳答案

我的猜测是,您的计算机上使用的是 JDK 8,但是 JDK 7 中发生的错误为 java.util.Base64仅自 Java SE 8 起可用。

我建议在两台机器上使用相同的 Java 版本。

否则你应该考虑cross-compiling 。如您所见,仅设置源和目标级别是不够的,因为您仍然可以调用新的 API。

关于java - 打开移位 : maven compiler error : Base64 can not find the symbol,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31589842/

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