SpringBoot 자동 설정
으렴
스프링부트를 시작하는 시작하는 어노테이션인 @SpringBootApplication에는 아래의 세가지 어노테이션이 숨어있다. @SpringBootConfiguration @ComponentScan @EnableAutoConfiguration bean은 두 단계로 나뉘어서 읽혀진다. @ComponentScan//1단계 @EnableAutoConfiguration//2단계 @ComponentScan을 하는 Component는 기본적으로 아래와 같다. @Configuration @Repository @Service @Controller @RestController 프로젝트를 생성할 때에는 다음과 같이 이름을 사용하는 것이 좋다. @#$@%#@$-Spring-Boot-Autoconfigure : 자동 설정과 관..