Jetty

http://freesoftman.iteye.com/category/60521

http://jimichan.iteye.com/blog/601165

http://blog.csdn.net/sony315/article/details/6416796

JTable

 http://blog.csdn.net/sws8327/article/details/814701

http://download.oracle.com/javase/tutorial/uiswing/components/table.html

http://webservices.ctocio.com.cn/java/217/9492717.shtml

 

 Oracle

http://czmmiao.iteye.com/blog/1218007

public  class JettyStarter {

     /**
     * 
@param  args
     * 
@throws  Exception
     
*/
     public  static  void main(String[] args)  throws Exception {
         long begin = System.currentTimeMillis();
        Connector connector =  new SelectChannelConnector();
        connector.setPort(Integer.getInteger("jetty.port", 8080).intValue());
         //  设置Web环境
        WebAppContext webapp =  new WebAppContext();
        webapp.setContextPath("/sample");
        webapp.setWar("websample.war");
        Server server =  new Server();
        server.setConnectors( new Connector[] { connector });
        server.setHandler(webapp);
        server.start();
        System.out.println("Jetty Server started, use "
            + (System.currentTimeMillis() - begin) + " ms");
    }
}

 

Jetty

 

你可能感兴趣的:(jetty)