Finagle 节俭 NoSuchMethodError
Finagle Thrift NoSuchMethodError
我正在使用 Finagle thrift,但是当我构建服务器和服务时
val service = new EchoService$FinagleService(new EchoServiceImpl, new TBinaryProtocol.Factory())
val server = Thrift.server.serveIface("localhost:8080", service)
我 运行 我收到异常:
Exception in thread "main" java.lang.NoSuchMethodError: com.twitter.finagle.server.StackServer.$init$(Lcom/twitter/finagle/server/StackServer;)V
at com.twitter.finagle.Thrift$Server.<init>(Thrift.scala:417)
Disconnected from the target VM, address: '127.0.0.1:60647', transport: 'socket'
at com.twitter.finagle.Thrift$.server(Thrift.scala:495)
我认为你应该打电话给
val service = new EchoService$FinagleService(new EchoServiceImpl, new TBinaryProtocol.Factory())
val server = Thrift.server.serve("localhost:8080", service)
或
val server = Thrift.server.serveIface("localhost:8080", EchoServiceImpl)
但我不认为这可以解决 NoSuchMethodError,这似乎是一个版本兼容性问题。我会先检查 Finagle 版本和 Scrooge 版本,确保它们在同一页面上。
我正在使用 Finagle thrift,但是当我构建服务器和服务时
val service = new EchoService$FinagleService(new EchoServiceImpl, new TBinaryProtocol.Factory())
val server = Thrift.server.serveIface("localhost:8080", service)
我 运行 我收到异常:
Exception in thread "main" java.lang.NoSuchMethodError: com.twitter.finagle.server.StackServer.$init$(Lcom/twitter/finagle/server/StackServer;)V
at com.twitter.finagle.Thrift$Server.<init>(Thrift.scala:417)
Disconnected from the target VM, address: '127.0.0.1:60647', transport: 'socket'
at com.twitter.finagle.Thrift$.server(Thrift.scala:495)
我认为你应该打电话给
val service = new EchoService$FinagleService(new EchoServiceImpl, new TBinaryProtocol.Factory())
val server = Thrift.server.serve("localhost:8080", service)
或
val server = Thrift.server.serveIface("localhost:8080", EchoServiceImpl)
但我不认为这可以解决 NoSuchMethodError,这似乎是一个版本兼容性问题。我会先检查 Finagle 版本和 Scrooge 版本,确保它们在同一页面上。