Prompt-oven / auth-service

this repo is for making Backend(Spring boot) Auth service server app of our project || Also Security Issue in our project. make issue on this repo
0 stars 0 forks source link

♻️ Jyxb 189 refactor custom aop proxy #8

Closed yuseok-kim-edushare closed 2 weeks ago

yuseok-kim-edushare commented 2 weeks ago

AOP와 Proxy 패턴을 활용해서

컨트롤러는 Member UUID로 서비스를 프록시를 통해서 불러오도록 하고

프록시는 Aspect를 통해 Member UUID를 바탕으로 Member Instance를 찾고 찾은 Instance로 서비스 메소드를 호출하도록 하여

서비스는 Member를 찾는 책임을 갖지 않고, 받은 Instance로 도메인/비즈니스 로직을 처리하도록 구현했습니다.