Package org.eclipse.jetty.webapp

Examples of org.eclipse.jetty.webapp.StandardDescriptorProcessor


            if (lib.exists() || lib.isDirectory())
                ((WebAppClassLoader)context.getClassLoader()).addJars(lib);
        }

        //add the processor to handle normal web.xml content
        context.getMetaData().addDescriptorProcessor(new StandardDescriptorProcessor());
       
        //add a processor to handle extended web.xml format
        context.getMetaData().addDescriptorProcessor(new QuickStartDescriptorProcessor());
       
        //add a decorator that will find introspectable annotations
View Full Code Here

TOP

Related Classes of org.eclipse.jetty.webapp.StandardDescriptorProcessor

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.