일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Spring
- OS
- Network
- CSV
- airflow
- tcp
- grafana
- Operating System
- aws s3
- AWS
- helm
- docker
- kubectl
- ip
- kubernetes
- JavaScript
- log
- jvm
- Trino
- kubeadm
- MAC address
- PostgreSQL
- Packet
- Kafka
- java
- EC2
- Python
- zookeeper
- CVAT
- Vision
- Today
- Total
목록ComponentScan (3)
JUST WRITE
이 글은 Baeldung 사이트 'Spring Bean Annotations'를 해석, 정리한 글입니다. Bean Annotations Spring에서 Bean 생성 관련 Annotation에 대해서 알아보려 한다. 해당 Annotation은 org.springframework.stereotype Package에 존재한다. @ComponentScan @Component @Repository @Service @Controller @Configuration @ComponentScan Spring은 자동으로 Package에서 Bean들을 검색할 수 있다. @ComponentScan은 Annotation으로 설정한 Bean을 검색할 Package를 설정할 수 있다. @Configuration @Component..
이 글은 Baeldung 사이트 'Guide to Spring @Autowired'를 해석, 정리한 글입니다. Spring 2.5부터 Annotation를 통한 의존성 주입이 가능해졌다. @Autowired라는 Annotation을 통해 가능해졌다. @Autowired 준비 Spring Framework는 자동 의존성 주입이 가능하다. Spring 설정 파일에 Bean 의존성들을 정의하고 Spring Container가 의존성 Bean들을 자동으로 주입해준다. Annotation를 통한 의존성을 주입을 하려면 아래와 같이 정의한다. Java Configuration @Configuration @ComponentScan("com.baeldung.autowire.sample") public class App..
Spring Bean Spring IoC Container에서 생성, 관리하는 Java 객체를 Bean이라고 한다. (Bean Facotory는 Spring IoC를 담당하는 핵심 Container이다) Spring Bean은 Spring Framework에서 중요한 컨셉중의 하나이다. Spring Offical Document에서는 아래와 같이 정리하였다. In Spring, the objects that form the backbone of your application and that are managed by the Spring IoC container are called beans. A bean is an object that is instantiated, assembled, and otherw..