2016-07-09 58 views
1

我越來越對server.start()呼叫以下錯誤:ClassNotFoundException的時候開始泰魯斯獨立服務器

ClassNotFoundException: org.glassfish.tyrus.container.grizzly.server.GrizzlyServerContainer 

我還不能找到一個Maven依賴於GrizzlyServerContainer

任何想法?這裏是我的代碼:

private WebSocketModulManager() { 
     server = new Server("127.0.0.1", 30000, "/lightconsole", null, LightconsoleEndpoint.class); 
     try { 
      server.start(); 
     } catch (DeploymentException e) { 
      e.printStackTrace(); 
     } finally { 
      server.stop(); 
     } 
    } 

Maven Dependecies

回答

1

嘗試這種依賴性:

<dependency> 
    <groupId>org.glassfish.tyrus</groupId> 
    <artifactId>tyrus-container-grizzly-server</artifactId> 
    <version>1.13</version> 
</dependency> 
+0

是的,我已經做到了,但它看起來像的IntelliJ不處理我的POM文件。所有其他代碼都通過Intellij項目配置 – kyromoto

+0

推出我從IntelliJ依賴管理切換到直接maven pom文件。沒有所有的傾向都解決了。 – kyromoto