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

org.needcoke.coke.web.http.Handler Maven / Gradle / Ivy

package org.needcoke.coke.web.http;

import pers.warren.ioc.core.ApplicationContext;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * @author warren
 */
public interface Handler {

    //执行方法
    void handle(HttpServletRequest request, HttpServletResponse response, ApplicationContext applicationContext) throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy