반응형
SMALL
문제
- RabbitMQ 테스트 시 Config 서버 실행 오류 발생
문제 원인
- ...
application.yml
설정 파일의spring
depth 다음으로 붙어야 할 코드가 한 depth 더 들어가있었음..
문제 해결
- depth 맞춰주기
spring:
application:
name: ConfigServer
cloud:
config:
server:
git: ...
rabbitmq:
host: localhost
port: 5672
username: admin
password: admin
반응형
LIST