Java grpc 运行时错误

问题描述 投票:0回答:2

我正在尝试仅使用本地依赖项编译并运行 java grpc 客户端,但出现以下错误:

Exception in thread "main" java.lang.NoClassDefFoundError: io/netty/channel/socket/nio/NioSocketChannel
at io.grpc.netty.NettyChannelBuilder.<init>(NettyChannelBuilder.java:69)
at io.grpc.netty.NettyChannelBuilder.<init>(NettyChannelBuilder.java:103)
at io.grpc.netty.NettyChannelBuilder.forAddress(NettyChannelBuilder.java:91)
at io.grpc.netty.NettyChannelProvider.builderForAddress(NettyChannelProvider.java:52)
at io.grpc.netty.NettyChannelProvider.builderForAddress(NettyChannelProvider.java:38)
at io.grpc.ManagedChannelBuilder.forAddress(ManagedChannelBuilder.java:45)
at myclient.MyClient.<init>(myClient.java:28)
at myclient.MyClient.main(myClient.java:90)
Caused by: java.lang.ClassNotFoundException: io.netty.channel.socket.nio.NioSocketChannel
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 8 more

这是我的 gradle 文件:

apply plugin: 'java'

repositories {
    flatDir {
        dirs 'libs'
    }
}

dependencies {
    compile name: 'grpc-netty-1.0.3'
    compile name: 'grpc-okhttp-1.0.3'
    compile name: 'grpc-protobuf-1.0.3'
    compile name: 'grpc-stub-1.0.3'
    compile name: 'grpc-core-1.0.3'
    compile name: 'guava-20.0'
    compile name: 'protobuf-java-3.1.0'
}

jar {
    manifest {
        attributes(
        'Main-Class': 'myclient.myClient',
        'Class-Path': configurations.compile.collect {it.getName() }.join(' ')
        )
    }
}

程序可以编译,但不能运行。我已经从 protos 生成了 java 文件,并验证了我已使用正确的 protoc 和 protoc-gen-grpc-java 来与我正在使用的 jar 库相对应。如有任何帮助,我们将不胜感激。

java build.gradle grpc-java
2个回答
3
投票

您需要 netty jar 文件,从这里下载

https://mvnrepository.com/artifact/io.netty/netty-all/4.0.0.CR1

不要忘记将其添加到您的类路径中

更新:

我的错,请下载所有依赖的jar 文件。检查 => 编译依赖项 (16)

https://mvnrepository.com/artifact/io.netty/netty-codec-http2/5.0.0.Alpha2


0
投票

@CoderCole 请您展示一下您的 pom.xml 是什么样子以及如何以及在哪里下载所有依赖项

© www.soinside.com 2019 - 2024. All rights reserved.