- Spring 5.0 By Example
- Claudio Eduardo de Oliveira
- 204字
- 2021-06-24 19:17:25
Core container
The core container is the basis of the whole Spring ecosystem and comprehends four components—core, beans, context, and expression language.
Core and beans are responsible for providing the fundamentals of the framework and dependency injection. These modules are responsible for managing the IoC container, and the principal functions are the instantiation, configuration, and destruction of the object residents in the Spring container.
There are two critical interfaces inside these modules—BeanFactory and ApplicationContext. The BeanFactory takes care of the bean lifecycle, instantiating, configuring, managing, and destroying, and the ApplicationContext helps developers to work with files resources in a generic way, enable to publish events to registered listeners. Also, the ApplicationContext supports internationalization and has the ability to work with messages in different Locales.
These modules help the context component to provide a way to access the objects inside the container. The context component has the ApplicationContext interface with the essential class for the container.
- 從零構建知識圖譜:技術、方法與案例
- TypeScript Essentials
- Android Jetpack開發:原理解析與應用實戰
- CMDB分步構建指南
- Scala Design Patterns
- Cocos2d-x學習筆記:完全掌握Lua API與游戲項目開發 (未來書庫)
- HTML 5與CSS 3權威指南(第3版·上冊)
- Illustrator CC平面設計實戰從入門到精通(視頻自學全彩版)
- 智能手機故障檢測與維修從入門到精通
- Building Slack Bots
- 從零開始:C語言快速入門教程
- 高質量程序設計指南:C++/C語言
- Analytics for the Internet of Things(IoT)
- C++從零開始學(視頻教學版)(第2版)
- Tkinter GUI Application Development Blueprints