Skip to content

Commit

Permalink
[#310] feat(BeatApplication): AOP 프록시 활성화를 위해 @EnableAspectJAutoProxy 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonyworld committed Feb 17, 2025
1 parent 598d1ba commit 60d2b69
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/beat/BeatApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.cloud.openfeign.FeignAutoConfiguration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;

@SpringBootApplication
@EnableFeignClients
@EnableScheduling
@EnableAsync
@EnableAspectJAutoProxy
@ImportAutoConfiguration({FeignAutoConfiguration.class})
public class BeatApplication {

Expand Down

0 comments on commit 60d2b69

Please sign in to comment.