Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HierarchicalBeanFactory 和 ApplicationContext 的继承关系写反了 #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public class HierarchicalBeanFactoryDemo {

1. **ApplicationContext接口**

- `HierarchicalBeanFactory` 接口是 `ApplicationContext` 接口的子接口。因此,任何实现了 `HierarchicalBeanFactory` 的类也是 `ApplicationContext` 的子类。`ApplicationContext` 是 Spring 中应用程序上下文的核心接口,提供了更多的功能,包括事件发布、国际化支持等。
- `ApplicationContext` 接口是 `HierarchicalBeanFactory` 接口的子接口。因此,任何实现了 `HierarchicalBeanFactory` 的类也是 `ApplicationContext` 的子类。`ApplicationContext` 是 Spring 中应用程序上下文的核心接口,提供了更多的功能,包括事件发布、国际化支持等。

2. **ConfigurableApplicationContext接口**

Expand Down