gpt4 book ai didi

spring-el - SpEL 中 SimpleEvaluationContext.forReadOnlyDataBinding() 的混淆行为

转载 作者:行者123 更新时间:2023-12-05 06:29:17 29 4
gpt4 key购买 nike

我正在阅读 Spring 5.1.3 引用文档和 SpEL Type Conversion获取以下示例代码:

class Simple {
public List<Boolean> booleanList = new ArrayList<Boolean>();
}

Simple simple = new Simple();
simple.booleanList.add(true);

EvaluationContext context = SimpleEvaluationContext.forReadOnlyDataBinding().build();

// false is passed in here as a string. SpEL and the conversion service
// correctly recognize that it needs to be a Boolean and convert it
parser.parseExpression("booleanList[0]").setValue(context, simple, "false");

// b is false
Boolean b = simple.booleanList.get(0);

它像提到的文档一样工作,并更改属性的值,但根据 Javadocs forReadOnlyDataBinding()

Create a {@code SimpleEvaluationContext} for read-only access to public properties via {@link DataBindingPropertyAccessor}.

SpEL 表达式不应该是只读的,并且不会更改属性值吗?

最佳答案

字段的内容是可变的,但字段本身是不可变的。

即您不能用新数组替换 booleanList,但没有任何东西可以防止现有数组的内容发生变化。

关于spring-el - SpEL 中 SimpleEvaluationContext.forReadOnlyDataBinding() 的混淆行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53678691/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com