0

我正在尝试使用 Jetty 连接到使用 websocket 的 HTTP 服务器。问题是编译器无法解析类 HTTPClient。我在stackoverflow上搜索过,我找到了一个解决方案,但有用资源的链接不再可用......我应该包含什么JAR来运行这个例子? http://wiki.eclipse.org/Jetty/Tutorial/HttpClient

该页面没有说明...谢谢

4

3 回答 3

0

Did you copy http-client jar to yourapp/WEB-INF/lib? Adding jar to eclipse classpath adds that to your compile time classpath but also you need to add it to runtime classpath ( in case of webapps by adding it to WEB-INF/lib

OR

if you are using eclipse/ any other IDE:

  1. delete the project from eclipse.
  2. delete the folder in .
  3. Restart eclipse and Import the project back into eclipse.
于 2013-08-05T13:00:03.310 回答
0

jetty-client.jar 中的类。你可以在 jetty 发行版的 lib 目录中找到它。

于 2013-08-05T09:26:29.087 回答
0

我遇到了完全相同的问题,我想出的解决方案是使用另一个版本的 Jetty。当前的最新版本(v9.2.6)给了我上面标题中的相同错误。然后我下载 jetty v8.1.16 并在 Eclipse (JUNO) 中添加到“Java Build Path -> Libraries”(而不是 v9.2.6),问题就解决了。祝你好运!

于 2014-12-28T16:33:06.737 回答