Class
groovy.lang.MissingMethodException
Message
No signature of method: static com.foo.testapp.author.Author.list() is
applicable for argument types:
(org.codehaus.groovy.grails.web.servlet.mvc.GrailsParameterMap) values:
[[dc:com.foo.testapp.author.Author, action:list, ...]] Possible solutions:
is(java.lang.Object), wait(), find(), wait(long), with(groovy.lang.Closure),
use([Ljava.lang.Object;)
Around line 36 of
grails-app\controllers\org\grails\dynamicdomain\DdcController.groovy
33: def list = {
34: def domainClass = grailsApplication.getDomainClass(params.dc)
35: params.max = Math.min(params.max ? params.int('max') : 10, 100)
36: [domainInstanceList: domainClass.clazz.list(params),
37: domainInstanceTotal: domainClass.clazz.count(),
38: domainClass: domainClass]
39: }
Trace
Line | Method
->> 36 | doCall in DdcController.groovy
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 1110 | runWorker in java.util.concurrent.ThreadPoolExecutor
| 603 | run . . . in java.util.concurrent.ThreadPoolExecutor$Worker
^ 722 | run in java.lang.Thread
Original issue reported on code.google.com by
rma...@gmail.comon 11 Sep 2012 at 3:45