apache camel simple expression not giving string value(apache骆驼简单表达式没有给出字符串值)
问题描述
我正在使用 apache 骆驼.我正在尝试使用简单的表达式语言从正文中检索值.我需要它作为字符串,但简单返回 SimpleBuilder 对象.所以我尝试过这样的事情
I am using apache camel. I am trying to retrieve value from body using simple expression language. I need it as a String but simple returns SimpleBuilder object. So I have tried something like this
simple("${body.address.line}").resultType(String.class).getResultType()
但它返回给我 java.lang.String.请告诉我如何才能将这个表达式的结果作为字符串?
but it is returning me java.lang.String. please tell me how can I get this expression's result as String?
推荐答案
那只是为了配置简单的表达式.如果你需要评估它然后调用评估方法
That is only for configuring the simple expression. If you need to evaluate it then call the evaluate method
String foo = simple("${body.address.line}").evaluate(exchange, String.class);
这篇关于apache骆驼简单表达式没有给出字符串值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:apache骆驼简单表达式没有给出字符串值
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01