Skip to content

Commit

Permalink
Merge pull request #11 from sazzeo/microservice-communication/open-feign
Browse files Browse the repository at this point in the history
rabbit mq 제거
  • Loading branch information
sazzeo authored Aug 14, 2022
2 parents c786a8f + 47a0805 commit 3b251b2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
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

0 comments on commit 3b251b2

Please sign in to comment.