blob: 7cfacff45b19d1e6169218314d922baf63ca0a82 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache license, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the license for the specific language governing permissions and
* limitations under the license.
*/
package org.apache.logging.log4j.audit.service.config;
import org.apache.logging.log4j.catalog.api.util.ProfileUtil;
import org.springframework.web.WebApplicationInitializer;
import org.springframework.web.context.ContextLoaderListener;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
import org.springframework.web.servlet.DispatcherServlet;
import javax.servlet.ServletContext;
import javax.servlet.ServletRegistration;
public class WebAppInitializer implements WebApplicationInitializer {
private static final String APPLICATION_NAME = "AuditService";
@Override
public void onStartup(ServletContext servletContext) {
servletContext.setInitParameter("applicationName", APPLICATION_NAME);
System.setProperty("applicationName", APPLICATION_NAME);
ProfileUtil.setActiveProfile(servletContext);
AnnotationConfigWebApplicationContext rootContext = new AnnotationConfigWebApplicationContext();
rootContext.setDisplayName(APPLICATION_NAME);
rootContext.register(ApplicationConfiguration.class);
servletContext.addListener(new ContextLoaderListener(rootContext));
// MVC Context
AnnotationConfigWebApplicationContext mvcContext = new AnnotationConfigWebApplicationContext();
mvcContext.register(WebMvcAppContext.class);
ServletRegistration.Dynamic restServlet = servletContext.addServlet("restServlet", new DispatcherServlet(mvcContext));
restServlet.setLoadOnStartup(1);
restServlet.addMapping("/*");
}
}