Skip to content

Commit

Permalink
feat: 모듈간 통신을 위한 WebClient 관련 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
namkikim0718 committed Oct 9, 2024
1 parent e6f441b commit 2af4814
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.be.gitfolio.common.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.reactive.function.client.WebClient;

@Configuration
public class WebClientConfig {

@Bean
public WebClient.Builder webClientBuilder() {
return WebClient.builder();
}
}

0 comments on commit 2af4814

Please sign in to comment.