We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.server.startup.
Class ServletDeployer
- java.lang.Object
-
- com.vaadin.flow.server.startup.ServletDeployer
-
public class ServletDeployer extends Object
Context listener that automatically registers Vaadin servlets. The servlets registered are:
- Vaadin application servlet, mapped to '/*'
The servlet won't be registered, if anyVaadinServlet
is registered already or if there are no classes annotated withRoute
annotation. - Static files servlet, mapped to '/VAADIN/static' responsible to resolve files placed in the '[webcontext]/VAADIN/static' folder or in the '[classpath]/META-INF/static' location. It prevents sensible files like 'stats.json' and 'flow-build-info.json' to be served. It manages cache headers based on the '.cache.' and '.nocache.' fragment in the file name.
Constants.DISABLE_AUTOMATIC_SERVLET_REGISTRATION
system property is set totrue
.Since:
1.0
Author:
Vaadin Ltd
See Also:
VaadinServletConfiguration.disableAutomaticServletRegistration()
- Vaadin application servlet, mapped to '/*'
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static class
ServletDeployer.StubServletConfig
Default ServletConfig implementation.
-
Constructor Summary
Constructors Constructor and Description ServletDeployer()
-
Method Summary
All Methods Modifier and Type Method and Description void
contextDestroyed(ServletContextEvent sce)
void
contextInitialized(ServletContextEvent sce)
-