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

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

package com.github.datalking.web;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * 类似于HttpServlet,仅有保留一个接口用于处理http请求
 *
 * @author yaoo on 5/4/18
 */
public interface HttpRequestHandler {

    void handleRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy