Package org.apache.tomcat.util.descriptor.web

Examples of org.apache.tomcat.util.descriptor.web.JspPropertyGroup


        final OpenEJBWebXml webXml = new OpenEJBWebXml(prefix);

        if (DEFERRED_SYNTAX != null) {
            for (final String s : DEFERRED_SYNTAX.split(",")) {
                if (!s.isEmpty()) {
                    final JspPropertyGroup propertyGroup = new JspPropertyGroup();
                    propertyGroup.addUrlPattern(s);
                    propertyGroup.setDeferredSyntax("true");
                    webXml.addJspPropertyGroup(propertyGroup);
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.tomcat.util.descriptor.web.JspPropertyGroup

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.