Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
livk-cloud committed Jun 28, 2024
1 parent 40e670c commit effa052
Showing 1 changed file with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@
* @author livk
*/
@Slf4j
@EnableHttpClient({
HttpClientType.REST_TEMPLATE,
HttpClientType.WEB_CLIENT,
HttpClientType.REST_CLIENT
})
@EnableHttpClient({ HttpClientType.REST_TEMPLATE, HttpClientType.WEB_CLIENT, HttpClientType.REST_CLIENT })
@SpringBootApplication
public class App {

Expand All @@ -49,14 +45,13 @@ public static void main(String[] args) {
}

@Bean
public ApplicationRunner applicationRunner(WebClient webClient,
RestTemplate restTemplate,
RestClient restClient) {
public ApplicationRunner applicationRunner(WebClient webClient, RestTemplate restTemplate, RestClient restClient) {

return args -> {
log.info("restTemplate:{}", restTemplate);
log.info("webClient:{}", webClient);
log.info("restClient:{}", restClient);
};
}

}

0 comments on commit effa052

Please sign in to comment.