在 Mule 2 中,我们曾经能够使用以下命令创建动态入站端点:
<quartz:endpoint-polling-job>
<quartz:job-endpoint
address="jms://retry.queue?selector=JMSTimestamp%3C%3D%23[System.currentTimeMillis() - 30000]" />
</quartz:endpoint-polling-job>
在 Mule 3 中,我们得到一个错误:
The endpoint "jms://retry.queue?selector=JMSTimestamp<=#[System.currentTimeMillis()
- 30000]" is malformed and cannot be parsed... Only Outbound endpoints can be dynamic
听起来他们不再让表达式评估器在创建入站之前处理“地址”。我的解释正确吗?