Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rabbit mq 제거 #11

Merged
merged 1 commit into from
Aug 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion d-gateway/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-bootstrap:3.1.3'
//actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator:2.7.2'
implementation 'org.springframework.cloud:spring-cloud-starter-bus-amqp:3.1.2'
// implementation 'org.springframework.cloud:spring-cloud-starter-bus-amqp:3.1.2'
}

//버전 알아서 찾아주는 애
Expand Down
10 changes: 5 additions & 5 deletions d-gateway/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ spring:
preLogger : true
postLogger : true

rabbitmq: #호스트 정보 기술 => ms는 클라이언트
host: 127.0.0.1
port: 5672 # 15672 는 rabbit mq 관리 페이지 접속용
username: guest
password: guest
# rabbitmq: #호스트 정보 기술 => ms는 클라이언트
# host: 127.0.0.1
# port: 5672 # 15672 는 rabbit mq 관리 페이지 접속용
# username: guest
# password: guest

management:
endpoints:
Expand Down
2 changes: 1 addition & 1 deletion e-config-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ dependencies {
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'org.springframework.boot:spring-boot-starter-actuator:2.7.2'
implementation 'org.springframework.cloud:spring-cloud-config-server:3.1.3'
implementation 'org.springframework.cloud:spring-cloud-starter-bus-amqp:3.1.2'
implementation 'org.springframework.cloud:spring-cloud-starter-bootstrap:3.1.3'
// implementation 'org.springframework.cloud:spring-cloud-starter-bus-amqp:3.1.2'

}

Expand Down
12 changes: 6 additions & 6 deletions e-config-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ spring:
uri: https://github.com/sazzeo/mas-config-yml-repo # remote git repository path
# username: private repository 이용시 설정 추가
# password:

rabbitmq: #호스트 정보 기술 => ms는 클라이언트
host: 127.0.0.1
port: 5672 # 15672 는 rabbit mq 관리 페이지 접속용
username: guest
password: guest
#
# rabbitmq: #호스트 정보 기술 => ms는 클라이언트
# host: 127.0.0.1
# port: 5672 # 15672 는 rabbit mq 관리 페이지 접속용
# username: guest
# password: guest


# git이 아닌 로컬 폴더 이용시
Expand Down