有人知道如何在Java类中使用简单的main启动Jetty9 ???
例如,我见过以下程序:
public static void main(String[] args) throws Exception {
Server server = new Server(8080);
WebAppContext webAppContext = new WebAppContext("./src/main/webapp","/recruiting");
webAppContext.setLogUrlOnStart(true);
webAppContext.setInitParameter(ContextLoader.CONTEXT_CLASS_PARAM,RecruitingAppContext.class.getName());
webAppContext.addServlet(DispatcherServlet.class,"/");
webAppContext.setWelcomeFiles(new String[]{"index.jsp"});
webAppContext.addEventListener(new RequestContextListener());
webAppContext.configure();
server.setHandler(webAppContext);
server.start();
System.out.println("Server started");
server.join();
}
但我还不能成功运行Jetty9.无论如何,我正试图用春天来做这件事.
有人让我看到一些例子来做这个???
非常感谢 :-)
最佳答案
我刚刚在几周前记录了我们的一个例子.我们将记录更多的示例,并在我们收到请求时添加一些示例,并且人们提交自己的…
原文链接:https://www.f2er.com/spring/432721.html无论如何,这应该让你去:)
http://www.eclipse.org/jetty/documentation/current/embedded-examples.html#embedded-one-webapp