BackEnd/Spring14 [Spring] Dependency Injection(DI) Dependency Injection (DI) 종속성 주입 종속성 주입이라는 표현이 어려워 유튜브 강의를 찾아보다가 뉴렉쳐 채널에서 강의를 보게 되었다. '~의 dependency(종속성) OO' 같이 표현하지만, 이 Dependency 라는 용어는 '부품'이라는 용어로 대체해 읽어보면 좀 더 직관적으로 이해할 수 있다. 1. Composition has a 관계 (일체형) A의 생성자 안에서 B 객체를 직접 생성하여 B를 갖는 방법 Class A { private B b; public A() { b = new B(); //B는 A의 부품. B를 dependency 라고 함(의존성) } } A a = new A(); 2. Association has a 관계 (조립형) 생성자 안에서 B 객체를 직접 생성.. 2021. 8. 26. [Spring] Spring 설치 및 기본설정 Spring 설치 https://github.com/spring-projects/toolsuite-distribution/wiki/Spring-Tool-Suite-3 GitHub - spring-projects/toolsuite-distribution: the distribution build for the Spring Tool Suite and the Groovy/Grails Tool Sui the distribution build for the Spring Tool Suite and the Groovy/Grails Tool Suite - GitHub - spring-projects/toolsuite-distribution: the distribution build for the Spring Tool .. 2021. 8. 24. 이전 1 2 다음