All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.datalking.web.WebApplicationInitializer Maven / Gradle / Ivy

The newest version!
package com.github.datalking.web;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;

/**
 * 容器启动时在代码中配置ServletContext
 * 

* 任何servlet, listener, 或者filter都可以在WebApplicationInitializer中注册 * * @author yaoo on 4/25/18 */ public interface WebApplicationInitializer { void onStartup(ServletContext servletContext) throws ServletException; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy