com.github.datalking.web.WebApplicationInitializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-mvc Show documentation
Show all versions of play-mvc Show documentation
simple mvc framework based on java servlet.
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