SpringBoot 공식문서 읽기 - 3. Using Spring Boot (2 / 2) - 스프링 빈과 의존성 주입, @SpringBootApplication 어노테이션, 어플리케이션 실행하기, Developer Tools, 어플리케이션 패키징
3. Using Spring Boot (2 / 2) 5. 스프링 빈과 의존성 주입 You are free to use any of the standard Spring Framework techniques to define your beans and their injected dependencies. We often find that using (to find your beans) and using (to do constructor injection) works well. If you structure your code as suggested above (locating your application class in a root package), you can add without any arguments. All of your application components (, , , etc.) are automatically registered as Spring Beans. T…