简体   繁体   English

使用RestEasy轻松使用Netty

[英]Simple use of Netty with RestEasy

I am completely new to RestEasy and Netty. 我对RestEasy和Netty完全陌生。 I just want to run a very simple test to see how netty actually works. 我只想运行一个非常简单的测试,以了解netty的实际工作原理。 So I am using this code: 所以我正在使用此代码:

ResteasyDeployment deployment = new ResteasyDeployment();
deployment.setResourceClasses(Collections.singletonList(OAIProviderImpl.class.getName()));


        NettyJaxrsServer netty = new NettyJaxrsServer();
        netty.setDeployment(deployment);
        netty.setPort(TestPortProvider.getPort());
        netty.setRootResourcePath("");
        netty.setSecurityDomain(null);
        netty.start();

        Thread.sleep(1000);

        netty.stop();

in a Main() method. Main()方法中。 OAIProviderImpl.class is just a class that implements a REST interface. OAIProviderImpl.class只是一个实现REST接口的类。 When I run this code. 当我运行这段代码时。 I get a NullpointerException on netty.stop() and by furthur going inside the stop() method, I can see that the exception is coming from releaseExternalResources . 我在netty.stop()上收到了一个NullpointerException ,并且通过在stop()方法中进行NullpointerException研究,我可以看到该异常来自releaseExternalResources The code above is copied from Netty Reasteasy 上面的代码是从Netty Reasteasy复制的

Has anyone used this code without any problem? 有没有人使用此代码没有任何问题? Can someone guide me please? 有人可以指导我吗? Thanks. 谢谢。 UPDATE: here is the stack-trace: 更新:这是堆栈跟踪:

java.lang.NullPointerException
    at org.jboss.resteasy.plugins.server.netty.NettyJaxrsServer.stop(NettyJaxrsServer.java:145)
    at nl.gridline.oai.NettyServerTest.test(NettyServerTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)


at java.lang.reflect.Method.invoke(Method.java:597)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

Problem is that the NettyJaxrsServer in the start method creates a private bootstrap object that is never saved globally. 问题在于,start方法中的NettyJaxrsServer创建了一个永远不会全局保存的私有引导对象。 So when you hit the stop method the global bootstrap reference is null. 因此,当您按下stop方法时,全局引导程序引用为null。 Weird miss. 很奇怪的小姐。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM