org.marid.app.web.initializer.DynServletConfigurer Maven / Gradle / Ivy
The newest version!
/*-
* #%L
* marid-webapp
* %%
* Copyright (C) 2012 - 2018 MARID software development group
* %%
* This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
* #L%
*/
package org.marid.app.web.initializer;
import org.marid.app.web.DynServlet;
import org.marid.spring.annotation.PrototypeScoped;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
import javax.servlet.ServletContext;
@Component
@PrototypeScoped
@Order(7)
public class DynServletConfigurer implements ServletContextConfigurer {
private final DynServlet dynServlet;
public DynServletConfigurer(DynServlet dynServlet) {
this.dynServlet = dynServlet;
}
@Override
public void start(ServletContext context) {
final var r = context.addServlet("dynServlet", dynServlet);
r.setLoadOnStartup(6);
r.setAsyncSupported(true);
r.addMapping("/dyn/*");
}
@Override
public void stop(ServletContext context) {
}
@Override
public boolean isStopNeeded() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy