[Spring] 주석 1(Annotation)
@Configuration, @Bean, @EnableAsync, @Async, @ExceptionHandler, @ResponseStatus, @ControllerAdvice, @Controller, @Service, @Repository, @RequestMapping, @GetMapping, @PostMapping , @DateTimeFormat @Configuration, @Bean @Configuration은 Spring Framework에서 사용되는 어노테이션 중 하나로, 해당 클래스가 Spring 애플리케이션 컨텍스트를 구성하는 데 사용된다는 것을 나타냅니다. @Configuration이 붙은 클래스는 Spring의 Java 기반 구성 방식 중 하나인 Java Config를 사..