@EnableAutoConfiguration
Spring Boot 애플리케이션에서 다양한 라이브러리들의 자동 구성을 활성화
@SpringBootApplication
@EnableAutoConfiguration
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
}
'JAVA > Spring' 카테고리의 다른 글
Annotation - @mapper @Select @Insert @Update @Delete (0) | 2023.04.20 |
---|---|
Annotation - @SpringBootConfiguration (0) | 2023.04.20 |
Annotation - @SpringBootApplication (0) | 2023.04.20 |
Annotation - @ComponentScan (0) | 2023.04.20 |
Annotation - @Configuration (0) | 2023.04.20 |