From a4cb366b06cea681830386e14d60b4ca49e0c728 Mon Sep 17 00:00:00 2001 From: linlei Date: Wed, 13 Mar 2024 09:18:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=8E=92=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 25bbcf0..925e5b9 100644 --- a/README.md +++ b/README.md @@ -86,12 +86,12 @@ + Spring 表达式语言(SpEL) - [`ExpressionParser`](spring-spel/spring-spel-expressionParser/README.md): 解析字符串形式的 SpEL 表达式,创建并返回 Expression 实例。 - - [`EvaluationContext`](spring-spel/spring-spel-evaluationContext/README.md): 管理SpEL表达式的上下文信息 - - [`PropertyAccessor`](spring-spel/spring-spel-propertyAccessor/README.md): 用于读取和写入对象的属性,可用于实现自定义的属性访问逻辑 - - [`ConstructorResolver`](spring-spel/spring-spel-constructorResolver/README.md): 解析构造函数以实例化bean - - [`MethodResolver`](spring-spel/spring-spel-methodResolver/README.md): 解析方法以调用对象的方法 - - [`BeanResolver`](spring-spel/spring-spel-beanResolver/README.md): 解析Bean以获取其实例 - - [`TypeLocator`](spring-spel/spring-spel-typeLocator/README.md): 定位并获取类型信息 + - [`EvaluationContext`](spring-spel/spring-spel-evaluationContext/README.md): 管理SpEL表达式的上下文信息。 + - [`PropertyAccessor`](spring-spel/spring-spel-propertyAccessor/README.md): 用于读取和写入对象的属性,可用于实现自定义的属性访问逻辑。 + - [`ConstructorResolver`](spring-spel/spring-spel-constructorResolver/README.md): 解析构造函数确定bean的实例化方式。 + - [`MethodResolver`](spring-spel/spring-spel-methodResolver/README.md): 解析类方法,确保正确调用,处理重载和参数匹配。 + - [`BeanResolver`](spring-spel/spring-spel-beanResolver/README.md): 解析bean定义,包括依赖、属性设置,实例化并返回。 + - [`TypeLocator`](spring-spel/spring-spel-typeLocator/README.md): 动态查找类,返回Class对象,在表达式解析、类型转换等。 + Bean工厂 - [`BeanFactory`](spring-factory/spring-factory-beanFactory/README.md):Spring的核心接口,提供对Bean的配置、创建、管理的基本功能。