import com.example.rcadmin.commonutils.R; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.RestControllerAdvice;
@RestControllerAdvice public class BaseExceptionHandler { @ExceptionHandler(value = Exception.class) public R exception(Exception e) { e.printStackTrace(); return R.error().message(e.getMessage()); } }
|