Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 문자열 리터럴
- 쓰레드 라이브러리
- 운영체제
- @Header
- 롬복주의점
- java.util.function
- none이미지
- sql-mappler
- 도커
- spring-data-jpa
- Spring
- FunctionalInterface
- 프로세스
- rainbow table
- custom annotation
- 문자열 불변성
- ReflectUtils
- Thread Multiplexing
- AOP
- OS
- python-socketio
- Thread Library
- functional interface
- hiberbate
- 함수형 인터페이스
- SystemCall
- strict stubbing
- Process
- django-crontab
- task_struct
Archives
- Today
- Total
목록bean (1)
JH's Develog
[SpringBoot] @Component vs @Bean vs @Configuration
@Component Component 어노테이션은 클래스에 붙어서(Class-level) 이 클래스를 Custom Bean으로 만들어줍니다. ComponentScan을 통해서 @Component가 붙은 클래스는 필요한 의존성을 모두 주입받고 스프링 컨테이너에 등록되며, 등록하려는 Bean의 클래스 소스가 편집가능한 경우에 사용됩니다. Component에는 @Controller, @Service, @Repository라는 스테레오 타입 어노테이션들이 있으며 목적에 맞게 선택하여 사용할 수 있습니다. @Bean Bean 어노테이션은 메서드에 붙는 Method-level 어노테이션이며 인스턴스화 하는 코드가 수동으로 작성됩니다. 빈의 인스턴스 코드와 클래스의 정의가 분리된 구조이기 때문에 외부 라이브러리나 써..
Spring
2022. 1. 10. 00:12