为什么这个stream和lambda表达式不能与SpELL声明一起使用?

问题描述 投票:6回答:2

我正在尝试在Spring @Cache注释中使用Java 8流和lambda表达式。

我正在尝试使用以下内容:

@CacheEvict(value = "tags", allEntries = true, 
condition = "#entity.getTags().stream().anyMatch(tag -> tag.getId() == null)")

失败的是:

SEVERE: The RuntimeException could not be mapped to a response, re-throwing to the HTTP container
org.springframework.expression.spel.SpelParseException: 
EL1042E:(pos 40): Problem parsing right operand

但是,如果我将流移动到实体上的方法中,我能够使它工作。然后注释如下工作,没有错误:

@CacheEvict(value = "tags", beforeInvocation=true, allEntries = true, 
condition = "#entity.containsNewTag()")

我宁愿不需要'containtsNewTag()'方法,如果可能的话,直接在SpEL表达式中使用流。可以这样做吗?

spring spring-el spring-cache
2个回答
5
投票

Spring表达语言定义为in the developer guide。目前语言不支持您尝试做的事情。我还认为这是一个非常奇怪的地方放置这样的代码:一个可以单元测试的孤立方法确实更好。


0
投票

您可以使用以下语法完成您的意图(使用Collection Selection和'this')

这里#root是你的实体,在选择内部,#this指的是一个标签。

示例anyMatch:

"#root.getTags().?[#this.getId() == null].size() > 0"

示例allMatch:

"#root.getTags().?[#this.getId() == null].size() eq #root.getTags().size()"
© www.soinside.com 2019 - 2024. All rights reserved.