Skip to content

Commit

Permalink
[#1] Feign Client 활성화
Browse files Browse the repository at this point in the history
  • Loading branch information
jun108059 committed Oct 27, 2021
1 parent 98ede32 commit c5ace9c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@SpringBootApplication
@EnableJpaAuditing // JPA Auditing 활성화
@EnableFeignClients // Feign Client 활성화
@ComponentScan(basePackages = "com.teamnexters.lazy")
@EnableJpaRepositories(basePackages = "com.teamnexters.lazy")
@EntityScan(basePackages = "com.teamnexters.lazy")
Expand Down

0 comments on commit c5ace9c

Please sign in to comment.