spring.h2.console.settings.web-allow-others=true
위 설정을 properties에 추가한다.
routes:
- id: diary-service
uri: lb://diary-service
predicates:
- Path=/diary/**
filters:
- RewritePath=/diary/(?<path>.*), /$\{path}
만약, 위처럼 Gateway-server를 통해 redirect를 하고 있다고 하더라도
localhost:게이트웨이 포트/리다이렉트 경로/h2-console
로 하면 접속이 안된다.
localhost:마이크로 서비스 포트/h2-console
로 직접 접속을 해야만 된다.