gorm - Missing static get method on Grails Domain Class -
we keep getting following error intermittently in production grails. says there no method given domain class. happens once every few days on code executing 300 times/minute. haven't been able reproduce it.
no signature of method: static domainclass.get() applicable argument types: (java.lang.long) values: [97]
has else ran problem? using grails 1.3.6. id's on our domain classes gorm defaults. running sun jvm version 1.6.0_17-b04.
update:
i found out little more when error happened today. using jms grails plugin, , error occurs in 1 of classes receiving jms messages. looks jms plugin starts delivering messages before grails has finished bootstraping application. if there messages in queue when grails starts, exceptions start appearing in log. once grails has started way, errors stop , messages process normally. guess spring context inside grails started before dynamic methods added domain classes.
you might running issue
http://jira.codehaus.org/browse/grails-4467
what bit weird how happens every often. sure actual method failing being called often?
Comments
Post a Comment