首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

用Jetty Web Server运作你的应用程序

2012-06-27 
用Jetty Web Server运行你的应用程序?A.http://www.codeproject.com/KB/java/Embedding_Jetty.aspx?B.publ

用Jetty Web Server运行你的应用程序

?

A.http://www.codeproject.com/KB/java/Embedding_Jetty.aspx

?

B.public static void main(String[] args) {Server server = new Server();SocketConnector connector = new SocketConnector();connector.setMaxIdleTime(1000 * 60 * 60);connector.setSoLingerTime(-1);connector.setPort(8888);server.setConnectors(new Connector[] { connector });WebAppContext appContext = new WebAppContext();appContext.setParentLoaderPriority(true);appContext.setServer(server);appContext.setContextPath("/app");appContext.setWar("src/main/webapp");server.addHandler(appContext);try {server.start();} catch (Throwable e) {throw new RuntimeException(e);}}

热点排行