Package org.apache.tomee.webapp.application

Examples of org.apache.tomee.webapp.application.ApplicationData


public class ApplicationListener implements ServletContextListener {
    private static final String CONTEXT_KEY = "ApplicationListener_APP_CONTEXT";

    @Override
    public void contextInitialized(ServletContextEvent servletContextEvent) {
        servletContextEvent.getServletContext().setAttribute(CONTEXT_KEY, new ApplicationData());
    }
View Full Code Here

TOP

Related Classes of org.apache.tomee.webapp.application.ApplicationData

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.