I am using the annotation grails.plugin.jms.Queue from the Grails JMS plugin, but I cant figure out how to I use a variabel as the value of the name attribute.
like this:
private static final inDebit = ConfigurationHolder.config.Q_IN_DEBIT
@Queue(name = inDebit )
Which gives me the following error
Attribute 'name' should have type 'java.lang.String'; but found type 'java.lang.Object' in @grails.plugin.jms.Queue
I am using Grails 1.3.7, Grails JMS Plugin 1.1
Looks to me like the inDebit varible loses it's type somewhere?