我在启动Java应用程序时遇到以下错误。
我需要在启动应用程序之前将一些hadoop相关目录导出到类路径以使其工作(我不能跳过这一步),我正在得到以下错误。
经过一些研究,我发现程序试图使用的类存在于两个不同的JAR文件中:
>
第一个是对maven应用程序(javax.ws.rs.jar)上的库的传递依赖
第二个是位于目录中的一个jar,其中包含hortonworks的所有hadoop depdencies,我需要将这些depdencies导出到我的类路径中以使应用程序工作(jsr311-api-1.1.1.jar)
所以我需要以某种方式告诉程序,应该使用封装在我的应用程序的jar中的maven依赖项,而不是位于类路径上的jar.(javax.ws.rs.jar),而不移除这个jar,因为它是我的大数据集群安装的一部分,我不能在类路径中玩那些jar。
有什么想法吗?
导致问题的pom.xml依赖项:
<dependency>
<groupId>com.hortonworks.registries</groupId>
<artifactId>schema-registry-client</artifactId>
<version>${schema.registry.version}</version>
</dependency>
[INFO] amgrd:KafkaDemoProcessor:jar:0.0.1-SNAPSHOT
[INFO] +- org.apache.flink:flink-java:jar:1.8.1:compile
[INFO] | +- org.apache.flink:flink-core:jar:1.8.1:compile
[INFO] | | +- org.apache.flink:flink-annotations:jar:1.8.1:compile
[INFO] | | +- org.apache.flink:flink-metrics-core:jar:1.8.1:compile
[INFO] | | +- com.esotericsoftware.kryo:kryo:jar:2.24.0:compile
[INFO] | | | +- com.esotericsoftware.minlog:minlog:jar:1.2:compile
[INFO] | | | \- org.objenesis:objenesis:jar:2.1:compile
[INFO] | | +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] | | \- org.apache.commons:commons-compress:jar:1.18:compile
[INFO] | +- org.apache.flink:flink-shaded-asm:jar:5.0.4-6.0:compile
[INFO] | +- org.apache.flink:flink-shaded-asm-6:jar:6.2.1-6.0:compile
[INFO] | +- org.apache.commons:commons-lang3:jar:3.3.2:compile
[INFO] | +- org.apache.commons:commons-math3:jar:3.5:compile
[INFO] | +- org.slf4j:slf4j-api:jar:1.7.15:compile
[INFO] | +- com.google.code.findbugs:jsr305:jar:1.3.9:compile
[INFO] | \- org.apache.flink:force-shading:jar:1.8.1:compile
[INFO] +- org.apache.flink:flink-streaming-java_2.12:jar:1.8.1:compile
[INFO] | +- org.apache.flink:flink-runtime_2.12:jar:1.8.1:compile
[INFO] | | +- org.apache.flink:flink-queryable-state-client-java_2.12:jar:1.8.1:compile
[INFO] | | +- org.apache.flink:flink-hadoop-fs:jar:1.8.1:compile
[INFO] | | +- org.apache.flink:flink-shaded-netty:jar:4.1.32.Final-6.0:compile
[INFO] | | +- org.apache.flink:flink-shaded-jackson:jar:2.7.9-6.0:compile
[INFO] | | +- org.javassist:javassist:jar:3.19.0-GA:compile
[INFO] | | +- org.scala-lang:scala-library:jar:2.12.7:compile
[INFO] | | +- com.typesafe.akka:akka-actor_2.12:jar:2.4.20:compile
[INFO] | | | +- com.typesafe:config:jar:1.3.0:compile
[INFO] | | | \- org.scala-lang.modules:scala-java8-compat_2.12:jar:0.8.0:compile
[INFO] | | +- com.typesafe.akka:akka-stream_2.12:jar:2.4.20:compile
[INFO] | | | +- org.reactivestreams:reactive-streams:jar:1.0.0:compile
[INFO] | | | \- com.typesafe:ssl-config-core_2.12:jar:0.2.1:compile
[INFO] | | | \- org.scala-lang.modules:scala-parser-combinators_2.12:jar:1.0.4:compile
[INFO] | | +- com.typesafe.akka:akka-protobuf_2.12:jar:2.4.20:compile
[INFO] | | +- com.typesafe.akka:akka-slf4j_2.12:jar:2.4.20:compile
[INFO] | | +- org.clapper:grizzled-slf4j_2.12:jar:1.3.2:compile
[INFO] | | +- com.github.scopt:scopt_2.12:jar:3.5.0:compile
[INFO] | | +- org.xerial.snappy:snappy-java:jar:1.1.4:compile
[INFO] | | \- com.twitter:chill_2.12:jar:0.7.6:compile
[INFO] | | \- com.twitter:chill-java:jar:0.7.6:compile
[INFO] | \- org.apache.flink:flink-shaded-guava:jar:18.0-6.0:compile
[INFO] +- org.apache.flink:flink-clients_2.12:jar:1.8.1:compile
[INFO] | +- org.apache.flink:flink-optimizer_2.12:jar:1.8.1:compile
[INFO] | \- commons-cli:commons-cli:jar:1.3.1:compile
[INFO] +- org.apache.flink:flink-connector-kafka_2.11:jar:1.8.1:compile
[INFO] | +- org.apache.flink:flink-connector-kafka-base_2.11:jar:1.8.1:compile
[INFO] | \- org.apache.kafka:kafka-clients:jar:2.0.1:compile
[INFO] | \- org.lz4:lz4-java:jar:1.4.1:compile
[INFO] +- com.hortonworks.registries:schema-registry-client:jar:0.3.0:compile
[INFO] | +- com.hortonworks.registries:schema-registry-common:jar:0.3.0:compile
[INFO] | | +- com.google.guava:guava:jar:18.0:compile
[INFO] | | +- org.slf4j:log4j-over-slf4j:jar:1.7.12:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-core:jar:2.7.3:compile
[INFO] | | \- com.fasterxml.jackson.core:jackson-databind:jar:2.7.3:compile
[INFO] | +- org.glassfish.jersey.core:jersey-client:jar:2.22.1:compile
[INFO] | | +- javax.ws.rs:javax.ws.rs-api:jar:2.0.1:compile
[INFO] | | +- org.glassfish.jersey.core:jersey-common:jar:2.22.1:compile
[INFO] | | | +- javax.annotation:javax.annotation-api:jar:1.2:compile
[INFO] | | | +- org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.22.1:compile
[INFO] | | | \- org.glassfish.hk2:osgi-resource-locator:jar:1.0.1:compile
[INFO] | | +- org.glassfish.hk2:hk2-api:jar:2.4.0-b31:compile
[INFO] | | | +- org.glassfish.hk2:hk2-utils:jar:2.4.0-b31:compile
[INFO] | | | \- org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b31:compile
[INFO] | | +- org.glassfish.hk2.external:javax.inject:jar:2.4.0-b31:compile
[INFO] | | \- org.glassfish.hk2:hk2-locator:jar:2.4.0-b31:compile
[INFO] | +- org.glassfish.jersey.media:jersey-media-multipart:jar:2.22.1:compile
[INFO] | | \- org.jvnet.mimepull:mimepull:jar:1.9.6:compile
[INFO] | +- com.hortonworks.registries:registry-common:jar:0.3.0:compile
[INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.7.3:compile
[INFO] | | | \- org.yaml:snakeyaml:jar:1.15:compile
[INFO] | | +- com.github.fge:json-schema-validator:jar:2.2.6:compile
[INFO] | | | +- joda-time:joda-time:jar:2.3:compile
[INFO] | | | +- com.googlecode.libphonenumber:libphonenumber:jar:6.2:compile
[INFO] | | | +- com.github.fge:json-schema-core:jar:1.2.5:compile
[INFO] | | | | +- com.github.fge:uri-template:jar:0.9:compile
[INFO] | | | | | \- com.github.fge:msg-simple:jar:1.1:compile
[INFO] | | | | | \- com.github.fge:btf:jar:1.2:compile
[INFO] | | | | +- com.github.fge:jackson-coreutils:jar:1.8:compile
[INFO] | | | | \- org.mozilla:rhino:jar:1.7R4:compile
[INFO] | | | +- javax.mail:mailapi:jar:1.4.3:compile
[INFO] | | | | \- javax.activation:activation:jar:1.1:compile
[INFO] | | | \- net.sf.jopt-simple:jopt-simple:jar:4.6:compile
[INFO] | | +- org.apache.hadoop:hadoop-client:jar:2.7.1:compile
[INFO] | | | +- org.apache.hadoop:hadoop-common:jar:2.7.1:compile
[INFO] | | | | +- xmlenc:xmlenc:jar:0.52:compile
[INFO] | | | | +- commons-httpclient:commons-httpclient:jar:3.1:compile
[INFO] | | | | +- commons-codec:commons-codec:jar:1.4:compile
[INFO] | | | | +- commons-net:commons-net:jar:3.1:compile
[INFO] | | | | +- javax.servlet.jsp:jsp-api:jar:2.1:runtime
[INFO] | | | | +- commons-logging:commons-logging:jar:1.1.3:compile
[INFO] | | | | +- commons-lang:commons-lang:jar:2.6:compile
[INFO] | | | | +- commons-configuration:commons-configuration:jar:1.6:compile
[INFO] | | | | | +- commons-digester:commons-digester:jar:1.8:compile
[INFO] | | | | | | \- commons-beanutils:commons-beanutils:jar:1.7.0:compile
[INFO] | | | | | \- commons-beanutils:commons-beanutils-core:jar:1.8.0:compile
[INFO] | | | | +- com.google.protobuf:protobuf-java:jar:2.5.0:compile
[INFO] | | | | +- com.google.code.gson:gson:jar:2.2.4:compile
[INFO] | | | | +- org.apache.hadoop:hadoop-auth:jar:2.7.1:compile
[INFO] | | | | | +- org.apache.httpcomponents:httpclient:jar:4.2.5:compile
[INFO] | | | | | | \- org.apache.httpcomponents:httpcore:jar:4.2.4:compile
[INFO] | | | | | \- org.apache.curator:curator-framework:jar:2.7.1:compile
[INFO] | | | | +- org.apache.curator:curator-client:jar:2.7.1:compile
[INFO] | | | | +- org.apache.curator:curator-recipes:jar:2.7.1:compile
[INFO] | | | | +- org.apache.htrace:htrace-core:jar:3.1.0-incubating:compile
[INFO] | | | | \- org.apache.zookeeper:zookeeper:jar:3.4.6:compile
[INFO] | | | | \- io.netty:netty:jar:3.7.0.Final:compile
[INFO] | | | +- org.apache.hadoop:hadoop-hdfs:jar:2.7.1:compile
[INFO] | | | | +- org.mortbay.jetty:jetty-util:jar:6.1.26:compile
[INFO] | | | | +- io.netty:netty-all:jar:4.0.23.Final:compile
[INFO] | | | | +- xerces:xercesImpl:jar:2.9.1:compile
[INFO] | | | | | \- xml-apis:xml-apis:jar:1.3.04:compile
[INFO] | | | | \- org.fusesource.leveldbjni:leveldbjni-all:jar:1.8:compile
[INFO] | | | \- org.apache.hadoop:hadoop-annotations:jar:2.7.1:compile
[INFO] | | +- org.hibernate:hibernate-validator:jar:5.1.3.Final:compile
[INFO] | | | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | | | +- org.jboss.logging:jboss-logging:jar:3.1.3.GA:compile
[INFO] | | | \- com.fasterxml:classmate:jar:1.0.0:compile
[INFO] | | \- org.springframework:spring-context:jar:4.3.6.RELEASE:compile
[INFO] | | +- org.springframework:spring-aop:jar:4.3.6.RELEASE:compile
[INFO] | | +- org.springframework:spring-beans:jar:4.3.6.RELEASE:compile
[INFO] | | +- org.springframework:spring-core:jar:4.3.6.RELEASE:compile
[INFO] | | \- org.springframework:spring-expression:jar:4.3.6.RELEASE:compile
[INFO] | \- com.hortonworks.registries:common-auth:jar:0.3.0:compile
[INFO] | \- org.apache.directory.server:apacheds-kerberos-codec:jar:2.0.0-M15:compile
[INFO] | +- org.apache.directory.server:apacheds-i18n:jar:2.0.0-M15:compile
[INFO] | +- org.apache.directory.api:api-asn1-api:jar:1.0.0-M20:compile
[INFO] | \- org.apache.directory.api:api-util:jar:1.0.0-M20:compile
[INFO] \- com.hortonworks.registries:schema-registry-serdes:jar:0.3.0:compile
[INFO] +- org.apache.avro:avro:jar:1.8.2:compile
[INFO] | +- org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
[INFO] | +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
[INFO] | +- com.thoughtworks.paranamer:paranamer:jar:2.7:compile
[INFO] | \- org.tukaani:xz:jar:1.5:compile
[INFO] +- commons-io:commons-io:jar:2.5:compile
[INFO] +- com.fasterxml.jackson.core:jackson-annotations:jar:2.7.3:compile
[INFO] +- org.glassfish.jersey.media:jersey-media-json-jackson:jar:2.22.1:compile
[INFO] | \- org.glassfish.jersey.ext:jersey-entity-filtering:jar:2.22.1:compile
[INFO] \- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.7.3:compile
[INFO] +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.7.3:compile
[INFO] \- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.7.3:compile
我用这些版本在类路径上添加了这些jar。构建并运行。我找不到任何原因。
<!-- https://mvnrepository.com/artifact/com.hortonworks.registries/schema-registry-client -->
<dependency>
<groupId>com.hortonworks.registries</groupId>
<artifactId>schema-registry-client</artifactId>
<version>0.8.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.hortonworks.registries/schema-registry-serdes -->
<dependency>
<groupId>com.hortonworks.registries</groupId>
<artifactId>schema-registry-serdes</artifactId>
<version>0.8.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.29.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api -->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1</version>
</dependency>
问题内容: 我试图在我的Java独立代码中使用来加载位于我的类路径中的jar文件内部的。 applicationContext.xml条目如下, 而且,当我尝试以这种方式加载bean时,我得到了。不能通过这种方式加载bean吗? jar文件作为maven依赖项添加到我的类路径中。当我在该项目的Eclipse中看到Java Build Path时,看到该jar链接为M2_REPO /…/.。 我以为
com.sun.tools.javac.主不在类路径上。 也许JAVA_HOME并不指向JDK。 当前设置为
问题内容: 我在将log4j.properties文件放在类路径上时遇到一些问题。我可以在开发(Eclipse Indigo)时使用它,但是,当我将应用程序导出为JAR时,则不能。 我为导出的JAR手工制作了MANIFEST.MF文件: 然后将JAR放在此文件组织上: 当我尝试运行app.jar时,他们找到了log4j.jar却没有找到log4j.properties: 我的 log4j.prop
我一直在努力让FindBugs(2.0.1)作为命令行Ant构建的一部分运行。我下载了FindBugs JAR并将其提取到/home/myuser/java/repo/umd/FindBugs/2.0.1/findBugs-2.0.1: 正如您在屏幕截图中看到的,在/home/myuser/java/repo/umd/findbugs/2.0.1/findbugs-2.0.1/lib下面有一个名为
我在Eclipse中创建了一个Java项目,并创建了一个带有main方法的简单类。 问题:当我运行程序(没有任何服务器等)时,我收到以下错误: 线程“main”java中出现异常。lang.NoClassDefFoundError:org/apache/commons/codec/DecoderException at autoPEC。main(autoPEC.java:6)由:java引起。la
问题内容: 是否可以指定一个Java ,其中包含另一个JAR文件中包含的JAR文件? 问题答案: 如果您试图创建一个包含应用程序及其所需库的jar,则有两种方法(我知道)。第一个是One-Jar,它使用特殊的类加载器来允许jar的嵌套。第二个是UberJar(或Shade),它会爆炸包含的库并将所有类放在顶级jar中。 我还应该提到UberJar和Shade分别是Maven1和Maven2的插件。