问题
最近用到了Spring Cloud Gateway,这里记录一下这个服务的常见配置。
spring:data:redis:host: ${REDIS_HOST:xxx.xxx.xxx.xxx}port: ${REDIS_PORT:2345wsd}password: ${REDIS_PASS:sdfsdfgh}database: ${REDIS_DB:8}session:redis:flush-mode: on_savenamespace: mysystem:sessiontimeout: P30Dcloud:gateway:discovery:locator:# 服务名小写lower-case-service-id: trueenabled: trueroutes:# 服务1- id: auth-svcuri: lb://auth-svcpredicates:- Path=/auth/**filters:- StripPrefix=1# 服务2- id: system-svcuri: lb://system-svcpredicates:- Path=/system/**filters:- StripPrefix=1