简体   繁体   English

Spring Boot Interceptor 不显示@ControllerAdvice 错误处理程序?

[英]Spring boot Interceptor dont show @ControllerAdvice errorhandler?

Implemetation: Im trying to implementin project with Interceptor but the Error handling in showing only in Terminal which is good but i need also to show in restapi in postman and its showing empty.实现:我试图用Interceptor来实现项目,但错误处理只在Terminal中显示,这很好,但我还需要在邮递员的 restapi 中显示并且它显示为空。


import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;


public class WebInterceptor implements HandlerInterceptor {
    
    private Logger logger = LoggerFactory.getLogger(WebInterceptor.class);

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
            throws Exception    {
        logger.error("WebInterceptor preHandle is now logged");
        return true;
    }

    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler,
            ModelAndView modelAndView) throws Exception {
        logger.error("WebInterceptor posthandle is now logged");
        HandlerInterceptor.super.postHandle(request, response, handler, modelAndView);
    }

    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
            throws Exception {
        logger.error("WebInterceptor afterCompletion is now logged");
        HandlerInterceptor.super.afterCompletion(request, response, handler, ex);
    }
    
    


    
    
    
    

}



import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class AppConfig implements WebMvcConfigurer{
    


    @Override
    public void addInterceptors(InterceptorRegistry registry) {

        registry.addInterceptor(new WebInterceptor()).addPathPatterns("/cart/**").order(1);
        registry.addInterceptor(new WebInterceptor()).addPathPatterns("/product/**").order(2);
    }
    
    
    
    

}



import com.kongapigateway.KongAPIgateway.ModelException.DATE_FORMAT_ERROR;
import com.kongapigateway.KongAPIgateway.ModelException.ProductExecption;
import com.kongapigateway.KongAPIgateway.ModelException.ProductIDnotFound;
import com.kongapigateway.KongAPIgateway.ModelException.ProductValueNotNull;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;

import org.springframework.web.bind.annotation.RestControllerAdvice;

@RestControllerAdvice
public class WEbAspectExceptionConfig {
    
     private Logger logger = LoggerFactory.getLogger(WEbAspectExceptionConfig.class);

        @ExceptionHandler(ProductValueNotNull.class)
        @ResponseStatus
        public void handle(ProductValueNotNull e) {
            logger.error(e.getMessage());
        }
        
        @ExceptionHandler(DATE_FORMAT_ERROR.class)
        @ResponseStatus
        public void handle2(DATE_FORMAT_ERROR e) {
               logger.error(e.getMessage());
        }
        
        @ExceptionHandler(ProductExecption.class)
        @ResponseStatus
        public void handle2(ProductExecption e) {
               logger.error(e.getMessage());
        }
        
        @ExceptionHandler(ProductIDnotFound.class)
        @ResponseStatus
        public void handle2(ProductIDnotFound e) {
               logger.error(e.getMessage());
        }
        
        

}


Terminal Output: This is the error handling message: Please input all field终端输出:这是错误处理消息: Please input all field

kongapigateway    | 2022-06-07 11:21:33.149  INFO 1 --- [nio-8095-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 1 ms
kongapigateway    | 2022-06-07 11:21:33.161 ERROR 1 --- [nio-8095-exec-1] c.k.K.Interceptor.WebInterceptor         : WebInterceptor preHandle is now logged
kongapigateway    | 2022-06-07 11:21:33.277 ERROR 1 --- [nio-8095-exec-1] c.k.K.AOP.WEbAspectExceptionConfig       : Please input all field
kongapigateway    | 2022-06-07 11:21:33.277 ERROR 1 --- [nio-8095-exec-1] c.k.K.Interceptor.WebInterceptor         : WebInterceptor afterCompletion is now logged

Postman api error handler is Empty Postman api 错误处理程序为空

Shown here显示在这里

Kindly disregard this Post Question.disregard此帖子问题。 I used Spring AOP @Around for customize exception.我使用 Spring AOP @Around 来自定义异常。

Thank you.谢谢你。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM