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 DevModeInitializer
- java.lang.Object
-
- com.vaadin.flow.server.startup.DevModeInitializer
-
All Implemented Interfaces:
public class DevModeInitializer extends Object implements Serializable
Servlet initializer starting node updaters as well as the webpack-dev-mode server.
Since:
2.0
See Also:
-
-
Constructor Summary
Constructors Constructor and Description DevModeInitializer()
-
Method Summary
All Methods Modifier and Type Method and Description void
contextDestroyed(ServletContextEvent ctx)
void
contextInitialized(ServletContextEvent ctx)
static void
initDevModeHandler(Set<Class<?>> classes, ServletContext context, DeploymentConfiguration config)
Initialize the devmode server if not in production mode or compatibility mode.
void
onStartup(Set<Class<?>> classes, ServletContext context)
-
-
-
Method Detail
-
onStartup
public void onStartup(Set<Class<?>> classes, ServletContext context) throws ServletException
Throws:
ServletException
-
initDevModeHandler
public static void initDevModeHandler(Set<Class<?>> classes, ServletContext context, DeploymentConfiguration config) throws ServletException
Initialize the devmode server if not in production mode or compatibility mode.
Parameters:
classes
- classes to check for npm- and js modulescontext
- servlet context we are running inconfig
- deployment configurationThrows:
ServletException
- if dev mode can't be initialized
-
contextInitialized
public void contextInitialized(ServletContextEvent ctx)
-
contextDestroyed
public void contextDestroyed(ServletContextEvent ctx)
-
-