全局异常相关问题

全局异常需要添加@ControllerAdvice@Component这两个注解
如果将全局异常放到公共的maven项目模块中依赖不可传递
公共的全局异常相当于以jar包的形式加入到需要用到的其他工程中
所以在其他模块中需要使用这个全局异常需要配置包扫描,

@SpringBootApplication(scanBasePackages = "com.qf",exclude = DataSourceAutoConfiguration.class)
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <optional>true</optional>
        </dependency>
@ControllerAdvice
@Component
public class ExceptionHanlder {

    //业务异常(程序员手动抛出的异常)
    @ExceptionHandler(ShopException.class)
    @ResponseBody
    public ResultEntity businessException(ShopException e){
        System.out.println("出现了业务异常");
        return ResultEntity.error(e.getMsg());
    }

    //系统异常(程序员写的bug)
    @ExceptionHandler(Exception.class)
    @ResponseBody
    public ResultEntity systemException(Exception e){
        System.out.println("系统出现异常了");
        return ResultEntity.error("系统正在维护");
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值