摘要:
注解基本语法如下 @Target({ ElementType.METHOD, ElementType.TYPE }) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface ParA { String name(); Str 阅读全文
摘要:
方法一: 单个接口实现跨域 在controller 方法上加 @CrossOrigin 注解 方法二 全局跨域处理 自定义 WebMvcConfigurer 注册到容器里,可以执行访问的路径 import org.springframework.context.annotation.Bean; im 阅读全文
摘要:
业务发生异常时,避免让用户看到错误信息影响体验 SpringBoot 提供了全局异常处理,可以自定义状态码和错误信息等 官网介绍如下 可以实现 ErrorController 来指定错误路径的跳转 通过使用 ControllerAdvice 注解 也可以通过response 进行回写错误响应信息 样 阅读全文