Spring의 Bean 관련 annotation @Bean, @Component, @Configuration, @Service, @Controller, @Repository
Spring의 Bean 관련 annotation @Bean, @Component, @Configuration, @Service, @Controller, @Repository 목차 1. annotation이란? java @ 2. Spring Bean과 @Bean 3. @Component 4. @Configuration, @Controller, @Service, @Repository 1. annotation이란? java @ annotation을 구글에서 검색해보면 뜻이 "주석" 이란 뜻으로 나옵니다. 그러나, 프로그래밍에서 일반적으로 쓰이는 주석과는 다릅니다. 무엇인가를 설명하기 위한 주석( /* */ 나 //)은 영어로는 comment(코멘트)라고 합니다. 자바에서의 annotation(어노테이션)은 주..
2023. 5. 21.
[Spring] Spring에서 Exception 제대로 처리하기, Spring Exception 전역 예외 처리, Spring exception 처리, Spring exception handler, ExceptionHandler, 스프링 예외처리, Spring exception 예외처리, Spring exception
Spring에서 Exception 제대로 처리하기, Spring Exception 전역 예외 처리, Spring exception 처리, Spring exception handler, ExceptionHandler, 스프링 예외처리, Spring exception 예외처리, Spring exception Spring에서의 예외처리 방법 Spring에서는 Java에서의 try catch 블록을 사용하는것 외에 예외를 처리할 수 있는 간단한 방법을 제공합니다. 대표적으로 @ExceptionHandler라는 annotation(어노테이션)을 이용하여 예외처리할 수 있습니다. 또한, 이를 프로젝트 전체에 적용하기 위해, @ControllerAdvice라는 annotation 을 사용할 수 있습니다. 이에 대한 ..
2022. 7. 31.