groovy « Integration « Spring Q&A





1. Grails & JMS Spring Integration: 'selector-expression' in recipient-list-router not working    stackoverflow.com

Following is the code which is not working: SampleGrailsPlugin.groovy

def doWithSpring = {
 integration{
  'recipient-list-router'(id:'listenerRouter','input-channel':'inChannel')
  {
   recipient('selector-expression':"false",'channel':'outChannel')
  }
 }
}
What ever value I give in 'selector-expression', message is getting ...

2. Grails/Groovy integration in STS does not evaluate expressions    forum.springsource.org

Grails/Groovy integration in STS does not evaluate expressions I just downloaded the STS 2.6.1 and the Grails/Groovy integration. Everything seems to work fine in terms of the ability to debug and ...