使用 SPeL 的 Spring Integration 过滤器表达式

发布于 2024-11-18 11:43:14 字数 548 浏览 3 评论 0原文

我有一个包含允许值列表的配置 bean:

@Component
public class Conf {
    public List<String> getAllowedValues() {
        return Arrays.asList("A", "B", "C", "D");
}

我已使用名为“someValue”的字段填充了消息头,并且我想使用过滤器元素来排除 someValue 不在允许值列表中的消息。

我的上下文如下所示:

<int:filter expression="#{conf.allowedValues}.contains(headers.get('someValue'))"/>

但我得到: SpelParseException: EL1041E:(pos 1): After parsing a valid expression, there is still more data in the expression: 'comma(,)'

I have a configuration bean that has a list of allowed values:

@Component
public class Conf {
    public List<String> getAllowedValues() {
        return Arrays.asList("A", "B", "C", "D");
}

I have populated my message headers with a field called 'someValue' and I want to use a filter element to exclude messages where someValue is not in the allowed values list.

My context looks like this:

<int:filter expression="#{conf.allowedValues}.contains(headers.get('someValue'))"/>

But I get: SpelParseException: EL1041E:(pos 1): After parsing a valid expression, there is still more data in the expression: 'comma(,)'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦屿孤独相伴 2024-11-25 11:43:14

答案在此处提供

<int:filter expression="@conf.allowedValues.contains(headers.get('someValue'))"/>

The answer was provided here:

<int:filter expression="@conf.allowedValues.contains(headers.get('someValue'))"/>
很酷不放纵 2024-11-25 11:43:14

我对此有一个更简单(也许不是最好)的解决方案。

<int:filter expression="{"A", "B", "C", "D"}.contains(headers.get('someValue'))" />

参考

I got a simpler (maybe not the best) solution for this.

<int:filter expression="{"A", "B", "C", "D"}.contains(headers.get('someValue'))" />

reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文