我从http://download.eclipse.org/jetty/stable-9/dist/下载了码头。
我可以启动/停止Jetty服务器。我也知道eclipse wiki上的教程。 但是我找不到如何在eclipse中为Java SE上的项目添加jetty的信息。
简单地说: org.eclipse.jetty.server.Server 无法识别。
答案 0 :(得分:1)
我假设您已经对插件进行了排序,现在它是您项目中的编译器问题。检查项目的构建路径,看看是否包含了Jetty jar。
答案 1 :(得分:1)
如果你想嵌入Jetty,你需要将Jar文件添加到Eclipse中的Build Path。
Jetty:http://download.eclipse.org/jetty/stable-9/dist/
jar文件夹位于lib文件夹中,您可能需要Jetty-server.jar文件。
如何在Eclipse中添加Jar来构建路径:Where to put the external jars?
答案 2 :(得分:0)
SimplestServer.java中的以下代码实例化并运行 最简单的Jetty服务器:
public class SimplestServer
{
public static void main(String[] args) throws Exception
{
Server server = new Server(8080);
server.start();
server.join();
}
}