gpt4 book ai didi

java - 由 : org. apache.maven.plugin.PluginContainerException 引起:

转载 作者:行者123 更新时间:2023-11-28 23:31:38 25 4
gpt4 key购买 nike

Caused by: org.apache.maven.plugin.PluginContainerException: A required class was missing while executing org.codehaus.mojo:tomcat-maven-plugin:1.1:deploy: org/apache/commons/codec/binary/Base64

当我尝试将示例 Web 项目部署到 Tomcat 中时收到上述错误消息。 tomcat-maven-plugin:1.1 jar 存在于我的本地存储库中。

pom.xml

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.1</version>
<configuration>
<server>tomcat</server>
<url>http://localhost:8080/manager/text</url>
</configuration>
<goals>
<goal>deploy</goal>
</goals>
</plugin>

最佳答案

它可能与缺少的 commons-codec.jar 相关联。从http://commons.apache.org/proper/commons-codec/download_codec.cgi下载.然后添加它的项目构建路径。为此,右键单击项目,单击“属性”,单击“Java 构建路径”,打开“库”选项卡,然后单击“添加外部 JAR...”。

或者如果你正在使用 maven 添加依赖

<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</version>
</dependency>

关于java - 由 : org. apache.maven.plugin.PluginContainerException 引起:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29601849/

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