Package org.springframework.web

Examples of org.springframework.web.WebApplicationInitializer


      @Override
      public void contextInitialized(ServletContextEvent sce) {
        try {
          for (Class<?> webApplicationInitializer : webApplicationInitializers) {
            WebApplicationInitializer initializer = (WebApplicationInitializer) webApplicationInitializer.newInstance();
            initializer.onStartup(sce.getServletContext());
          }
        }
        catch (Exception ex) {
          throw new RuntimeException(ex);
        }
View Full Code Here

TOP

Related Classes of org.springframework.web.WebApplicationInitializer

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.