作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读 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/
我正在阅读 Spring 5.1.3 引用文档和 SpEL Type Conversion获取以下示例代码: class Simple { public List booleanList =
我是一名优秀的程序员,十分优秀!