You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.ruoyi.gateway.config;
|
|
|
|
|
|
|
|
import com.ruoyi.gateway.handler.SentinelFallbackHandler;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.core.Ordered;
|
|
|
|
import org.springframework.core.annotation.Order;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 网关限流配置
|
|
|
|
*
|
|
|
|
* @author ruoyi
|
|
|
|
*/
|
|
|
|
@Configuration
|
|
|
|
public class GatewayConfig {
|
|
|
|
@Bean
|
|
|
|
@Order(Ordered.HIGHEST_PRECEDENCE)
|
|
|
|
public SentinelFallbackHandler sentinelGatewayExceptionHandler() {
|
|
|
|
return new SentinelFallbackHandler();
|
|
|
|
}
|
|
|
|
}
|