이전 포스팅 참고 https://wonuk.tistory.com/144?category=1008468 Spring의 객체 지향 적용 SRP, DIP, OCP Spring의 객체 지향 원리 주문 서비스와 할인정책이 있다. 만약 할인정책(DiscountPolicy)이 변경되려면 public class OrderServiceImpl implements OrderService { // private final DiscountPolicy discountPol.. wonuk.tistory.com 제어의 역전 IoC(Inversion of Control) 기존 프로그램은 클라이언트 구현 객체가 스스로 필요한 서버 구현 객체를 생성하고, 연결하고, 실행했다. 한마디로 구현 객체가 프로그램의 제어 흐름을 스스로 조종했다..