Examples of EmptyDirContext


Examples of org.apache.tomee.catalina.naming.resources.EmptyDirContext

        }

        // can only be done until here (before_start)
        if (Boolean.parseBoolean(SystemInstance.get().getProperty("tomee.skip-war-resources", "false"))) {
            if (!EmptyDirContext.class.isInstance(Reflections.get(standardContext, "webappResources"))) {
                final EmptyDirContext resources = new EmptyDirContext(standardContext);
                standardContext.setResources(resources);
                standardContext.setCachingAllowed(resources.isCached());
            } // else don't redo it otherwise it just doesn't work when reload() is called
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.