멋사 부트캠프/SpringFramework
-
01. 의존성 주입 (DI)멋사 부트캠프/SpringFramework 2025. 5. 16. 13:25
1. 의존성 주입 방식 1) 에너테이션 방식Spring은 MVC 아키텍처를 따르며, @Autowired와 같은 애너테이션을 통해 의존성 주입을 수행한다.각각의 애너테이션(아래 예시)을 Spring 컨테이너 (= ApplicationContext)가 관리한다.@Controllerpublic class PersonController { private PersonService service; private PersonConsoleView view; private Scanner sc = new Scanner(System.in); @Autowired public PersonController(PersonService service, PersonConsoleView view) { this.service ..