作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Camel route 使用属性占位符。
我有定义属性的 test.properties:MQ.queuename1=TESTQUEUE。
在 Camel 上下文中,我定义占位符:
<camel:camelContext xmlns="http://camel.apache.org/schema/spring" >
<propertyPlaceholder id="camel-properties" location="file:${web.external.propdir}/test.properties"/>
<choice>
<when>
<simple>${in.header.queuename} == '{{MQ.queuename1}}'</simple>
<bean ref="ExtractOrderContent" method="extractContent"/>
<to uri="websphere-mq:queue:TESTQUEUE" pattern="InOnly"/>
</when>
</choice>
最佳答案
您可以使用简单的属性函数 (http://camel.apache.org/simple)
<simple>${in.header.queuename} == ${properties:MQ.queuename1}</simple>
关于spring - 如何使 Camel 简单表达式与spring xml中的属性占位符一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22002028/
我是一名优秀的程序员,十分优秀!