-
Notifications
You must be signed in to change notification settings - Fork 33
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
将从目标对象中提取 key 值的操作分离为独立的键值提取器 #103
Labels
enhancement
New feature or request
primary
This is an important feature or fix that needs to be completed as a top priority
refactor
Refactoring code to optimize or add functionality
Milestone
Comments
Createsequence
added
enhancement
New feature or request
refactor
Refactoring code to optimize or add functionality
labels
Jul 6, 2023
Createsequence
added
the
primary
This is an important feature or fix that needs to be completed as a top priority
label
Jul 6, 2023
在 2.6.0 版本,先支持基于 getter 方法的操作配置。 参见 #93 |
Createsequence
changed the title
将从目标对象中提取 key 值的操作分离为独立的键值提取器
支持将 Feb 21, 2024
@Assemble
注解配置在 getter 方法上
Createsequence
added a commit
that referenced
this issue
Feb 21, 2024
Createsequence
added a commit
that referenced
this issue
Feb 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature or request
primary
This is an important feature or fix that needs to be completed as a top priority
refactor
Refactoring code to optimize or add functionality
目前,从目标对象对象中提取 key 值的操作基于装配处理器
AssembleOperationHandler
完成,考虑到 #100 与 #93 的需求,或许需要将提取 key 值的操作抽象为独立的键值提取器组件。在这么做以后,
KeyTriggerAssembleOperation
将会多处一个新的方法getKeyTrigger
/getKeyExtractor
,装配处理器在从对象获取键值的时候,将不在强制根据 key 值通过ProperyOperator
读取,而是由键值提取器自己决定要怎么完成:ProperyOperator
反射的读取某个属性,甚至更进一步,直接缓存MethodInvoker
避免跳过一次哈希;The text was updated successfully, but these errors were encountered: