Package org.mortbay.jetty.handler

Examples of org.mortbay.jetty.handler.DebugHandler


{
    public static void main(String[] args)
        throws Exception
    {
        Server server = new Server(8080);
        DebugHandler debug = new DebugHandler();
        debug.setOutputStream(System.err);
        server.setHandler(debug);
       
        Context context = new Context(debug,"/",Context.SESSIONS);
        FilterHolder gzip=context.addFilter(IncludableGzipFilter.class,"/*",0);
        gzip.setInitParameter("uncheckedPrintWriter","true");
View Full Code Here

TOP

Related Classes of org.mortbay.jetty.handler.DebugHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.