The second int:recipient selector expression is not accepting '<' than symbol. Is there a way i can get this functionality work?Code:<int:chain id="leadRetryChain" input-channel="leadExportRetryRequestChannel"> <int:header-enricher> <int:header name="LeadSource" value="RetryQueue"/> <int:header name="LeadsRetryCount" expression="headers['JMSXDeliveryCount']+1"/> </int:header-enricher> <int:recipient-list-router> <int:recipient channel="leadsErrorChannel" selector-expression="headers['LeadsRetryCount']>5"/> <int:recipient channel="leadExportRequestChannel" selector-expression="headers['LeadsRetryCount']<5"/> </int:recipient-list-router> </int:chain>
I am using Latest Spring and Spring integration versions with 1.6 java


Reply With Quote