@RestControllerAdvice没有单用的。一般都是配合这三个注解才有作用:@ExceptionHandler、@InitBinder、@ModelAttribute。
如果想使用@ExceptionHandler(全局异常)、@InitBinder(请求方法之前的初始化)、@ModelAttribute(全局获取部门数据),同时他们三个运用也必须要有@RestControllerAdvice ,可以理解为为RequestController 和@Component合体的实现
@ExceptionHandler一般做全局异常处
package com.dxt.common.exception;
import com.dxt.common.Result;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* ClassName: ComponentExceptionHandler
* Package: com.dxt.dispatch.config.exception
* Description: 全局异常处理
* Date: 2023/3/28 15:17
* Author: A乐神
*/
@RestControllerAdvice
@Slf4j
public class CommonExceptionHandler {
private final Pattern pattern = Pattern.compile(".*[a-zA-Z]+.*");
/**
* Description: 手动抛出的业务异常,即般情况下不用关心的异常
* date: 2023/3/28 15:30
* @author : A乐神
*/
@ExceptionHandler(value = BusinessException.class)
public Result<?> businessExceptionHandler(BusinessException e) {
log.error("BusinessException", e);
return Result.error(e.getMessage());
}
/**
* Description: 手动抛出(非业务异常)或者其他应用抛出的执行时异常,
* 如果有msg 纯中文可以返回给用户否则不返回给用户,总是打印全部错误内容
* date: 2023/3/28 15:31
* @author : A乐神
*/
@ExceptionHandler(value = Exception.class)
public Result<?> exceptionHandler(Exception e) {
String message = e.getMessage();
log.error("RuntimeException", e);
if (StringUtils.isNotBlank(message)) {
// 匹配不到英文则返回错误信息
Matcher matcher = pattern.matcher(message);
if (!matcher.matches()) {
return Result.error(message);
}
}
return Result.error();
}
}
public class BusinessException extends RuntimeException {
public BusinessException() {
}
public BusinessException(String message) {
super(message);
}
}
把值绑定到Model中,使全局@RequestMapping可以获取到该值
@ModelAttribute
public void addAttributes(Model model) {
model.addAttribute("author", "Magical Sam");
}
获取方式
@RequestMapping("/home")
public String home(ModelMap modelMap) {
System.out.println(modelMap.get("author"));
}
//或者 通过@ModelAttribute获取
@RequestMapping("/home")
public String home(@ModelAttribute("author") String author) {
System.out.println(author);
}
所有@RequestMapping注解方法,在其执行之前初始化数据绑定器,一般没人用
@InitBinder
public void initBinder(WebDataBinder binder) {}