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
- 메이븐
- ApplicationContext
- lambda
- springwebmvc
- 토비의스프링3.1
- Immutable
- hibernate
- exception
- 자바
- 빌드툴
- 컴퓨터시스템
- AutoConfiguration
- FunctionalInterfaces
- springboot
- Spring
- beanfactory
- java
- ORM
- JPA
- 토비의스프링
- DesignPattern
- 클린코드
- IOC
- DispatcherServlet
- String
- Kotlin for Java Developers
- 프록시
- 링킹
- gradle
- 링커
Archives
- Today
- Total
목록core (1)
엔지니어로 가는 길
BeanFactory vs ApplicationContext
ApplicationContext를 쓰지 말아야 할 특별한 이유가 있지 않는 한 ApplicationContext를 쓰는 게 좋다. (ApplicationContext는 interface이다. ApplicationContext의 구현체로는 GenericApplicationContext 또는 AnnotationConfigApplicationContext를 주로 사용한다.) 이들은 스프링의 컨테이너에 주요한 entry point를 제공한다. 예를 들면 이들을 통해서 설정 파일을 로드하거나 클래스 패스 스캔을 하거나 프로그래밍적으로 빈 정의와 어노테이션이 붙은 클래스를 정의하거나 함수적 빈 정의(spring 5.0부터 지원)를 등록하는 일을 할 수 있다. ApplicationContext가 BeanFactor..
프로그래밍/Spring
2020. 3. 20. 20:49