org.smart4j.framework.mvc.HandlerInvoker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-framework Show documentation
Show all versions of smart-framework Show documentation
Smart Framework is a lightweight Java Web Framework
package org.smart4j.framework.mvc;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Handler 调用器
*
* @author huangyong
* @since 2.3
*/
public interface HandlerInvoker {
/**
* 调用 Handler
*
* @param request 请求对象
* @param response 响应对象
* @param handler Handler
* @throws Exception 异常
*/
void invokeHandler(HttpServletRequest request, HttpServletResponse response, Handler handler) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy