고급 기능 - 예외 오류 처리기


WebMVC 모듈은 개발자에게 IWebErrorProcessor 인터페이스를 제공하여 예외, 확인 결과 및 합의된 패턴에 대한 URL 구문 분석 논리에 대한 사용자 정의 확장을 구현할 수 있습니다.

다음을 통해 구성됩니다. 매개변수 그게 다입니다:

ymp.configs.webmvc.error_processor_class=net.ymate.framework.webmvc.WebErrorProcessor

샘플 코드:

public class WebErrorProcessor implements IWebErrorProcessor {

    /**
     * 异常时将执行事件回调
     *
     * @param owner 所属YMP框架管理器实例
     * @param e     异常对象
     */
    public void onError(IWebMvc owner, Throwable e) {
        // ...你的代码逻辑
    }

    /**
     * @param owner   所属YMP框架管理器实例
     * @param results 验证器执行结果集合
     * @return 处理结果数据并返回视图对象,若返回null则由框架默认处理
     */
    public IView onValidation(IWebMvc owner, Map<String, ValidateResult> results) {
        // ...你的代码逻辑
        return View.nullView();
    }

    /**
     * 自定义处理URL请求过程
     *
     * @param owner          所属YMP框架管理器实例
     * @param requestContext 请求上下文
     * @return 可用视图对象,若为空则采用系统默认
     * @throws Exception 可能产生的异常
     */
    public IView onConvention(IWebMvc owner, IRequestContext requestContext) throws Exception {
        // ...你的代码逻辑
        return View.nullView();
    }
}
# 🎜 🎜#