org.zols.web.exceptionhandling.ApiExceptionHandlerAdvice.java Source code

Java tutorial

Introduction

Here is the source code for org.zols.web.exceptionhandling.ApiExceptionHandlerAdvice.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package org.zols.web.exceptionhandling;

import javax.servlet.http.HttpServletRequest;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.ResponseStatus;

/**
 *
 * @author sathish
 */
@ControllerAdvice(basePackages = "org.zols")
public class ApiExceptionHandlerAdvice {

    /**
     * Handle exceptions thrown by handlers.
     *
     * @param exception
     * @param request
     * @return
     */
    @ResponseStatus(HttpStatus.BAD_REQUEST)
    @ExceptionHandler(Exception.class)
    @ResponseBody
    ErrorInfo handleBadRequest(HttpServletRequest req, Exception ex) {
        return new ErrorInfo(req.getRequestURI(), ex);
    }
}