无法创建Jetty WebSocketClient Java org.eclipse.jetty.websocket.client;

a7qyws3x  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(196)

我得到以下错误

  1. java.lang.NullPointerException: Cannot invoke "org.eclipse.jetty.websocket.core.WebSocketComponents.getObjectFactory()" because "this.components" is null

字符串
尝试创建WebSocketClient时
我看了一下构造函数,似乎this.coreClient的WebSocketComponents字段设置为null..
Constructor
似乎没有办法设置这个字段?那么我应该如何使用WebSocketClient?

64jmpszr

64jmpszr1#

结果我把12号码头和11号码头的客户混在一起了。
我只是简单地

  1. <dependency>
  2. <groupId>org.eclipse.jetty.websocket</groupId>
  3. <artifactId>websocket-jetty-client</artifactId>
  4. <version>12.0.15</version>
  5. </dependency>

字符串

  1. <dependency>
  2. <groupId>org.eclipse.jetty.websocket</groupId>
  3. <artifactId>websocket-jetty-client</artifactId>
  4. <version>11.0.15</version>
  5. </dependency>

展开查看全部

相关问题