gateway
kevin.dingdeyang
微信:yigechaojivip
qq:1104340725@qq.com
展开
-
Spring Cloud Gateway 全局异常处理
对于spring boot 项目 全局异常拦截可以使用@RestControllerAdvice 和@ExceptionHandler(Exception.class) 注解 进行全局异常处理。对于Gateway 内部的异常处理需要使用如下方法package config.exception;import org.springframework.beans.factory.ObjectProvider;import org.springframework.boot.autoconfigure..原创 2021-09-26 14:27:35 · 2963 阅读 · 0 评论 -
spring cloud WebFlux gateway 解决跨域问题
跨域问题对于后端来说已经不是什么新鲜的事,传统gataway跨域网上有很多解决办法和实现方案比如1.在yml中添加spring: cloud: gateway: globalcors: corsConfigurations: '[/**]': allow-credentials: true allowedOrigins: "*" allowedMethods: "*"...原创 2021-09-21 10:18:24 · 1751 阅读 · 0 评论