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

cn.hiboot.mcn.autoconfigure.web.exception.error.GlobalExceptionViewResolver Maven / Gradle / Ivy

package cn.hiboot.mcn.autoconfigure.web.exception.error;

import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServletRequest;

/**
 * GlobalExceptionViewResolver
 *
 * @author DingHao
 * @since 2022/1/17 14:18
 */
public interface GlobalExceptionViewResolver {

    boolean support(HttpServletRequest request);

    ModelAndView view(HttpServletRequest request, Throwable exception);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy