发布时间:2013-10-26 18:19:22
http://blog.csdn.net/kongxx/article/details/7237034Jetty实战之 嵌入式Jetty运行web app1. 运行标准的war文件1.1 首先找一个完整的war包,这里使用了struts2自带的一个例子应用程序struts2-blank.war;1.2 创建自己的Jetty Server启动类WebAppContextWithWarServer,其中指定了war文件的路径,并指定contex.........【阅读全文】
发布时间:2013-10-26 18:14:34
http://blog.csdn.net/kongxx/article/details/7230080Jetty实战之 嵌入式Jetty运行Servlet1. 首先创建一个ServletContextServer类,用来初始化web应用程序的Context,并且指定Servlet和Servlet匹配的url。这里指定了两个Servlet,分别是HelloServlet和GoodbyeServlet,并分别对应/hello/*和/goodbye/*。package com.g.........【阅读全文】
发布时间:2013-10-26 18:11:29
http://blog.csdn.net/kongxx/article/details/7227107Jetty实战之 嵌入式Jetty集成Spring运行1.创建一个Server类,用来通过spring来启动Jetty serverpackage com.google.code.garbagecan.jettystudy.sample4;import org.springframework.context.support.ClassPathXmlApplicationContext;public class MyServ.........【阅读全文】
发布时间:2013-10-26 18:07:35
http://blog.csdn.net/kongxx/article/details/7224423Jetty实战之 嵌入式运行Jetty实现简单文件服务器对于嵌入式运行Jetty,可以通过简单的一些代码实现一个简单的文件服务器的功能,如下:package com.google.code.garbagecan.jettystudy.sample3;import org.eclipse.jetty.server.Handler;import org.eclip.........【阅读全文】
发布时间:2013-10-26 18:04:14
http://blog.csdn.net/kongxx/article/details/7218787Jetty实战之 嵌入式运行Jetty多Connector在嵌入运行Jetty的时候,有时候想要启动两个端口,或者通过一个Jetty server提供多个不同服务,比如说使用8080来指定默认访问端口,使用8433指定https访问端口等等,此时就可以通过创建多个Connector来解决。1. 首先创.........【阅读全文】