org.smart4j.framework.mvc.ViewResolver 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;
/**
* 视图解析器
*
* @author huangyong
* @since 2.3
*/
public interface ViewResolver {
/**
* 解析视图
*
* @param request 请求对象
* @param response 响应对象
* @param actionMethodResult Action 方法返回值
*/
void resolveView(HttpServletRequest request, HttpServletResponse response, Object actionMethodResult);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy