Skip to content

Commit

Permalink
#323 [fix] 스캔하는 모듈 순서 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
orijoon98 committed Apr 28, 2023
1 parent 39b6379 commit 7167726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hous-api/src/main/java/hous/api/ApiApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@EnableFeignClients(basePackages = "hous.external")
@EnableAspectJAutoProxy
@EntityScan("hous.core")
@SpringBootApplication(scanBasePackages = {"hous.core", "hous.common", "hous.api", "hous.external"})
@SpringBootApplication(scanBasePackages = {"hous.core", "hous.common", "hous.external", "hous.api"})
public class ApiApplication {

public static void main(String[] args) {
Expand Down

0 comments on commit 7167726

Please sign in to comment.