0

这个错误是什么意思?我该如何解决?

| Error 2013-08-15 14:39:55,130 [localhost-startStop-1] ERROR dynamiccontroller.DynamicControllerManager  - 
No destination controller specified in the 'controller' property or
'grails.plugins.dynamicController.mixins' config attribute for PropertiesControllerMixin, ignoring
4

1 回答 1

2

我在这篇博文中找到了解决方案:

http://grails.1312388.n4.nabble.com/Upgrade-error-td3406164.html

把它放在你的 config.groovy 中:

grails.plugins.dynamicController.mixins = [ 
   'com.burtbeckwith.grails.plugins.appinfo.IndexControllerMixin':       'com.burtbeckwith.appinfo_test.AdminManageController', 
   'com.burtbeckwith.grails.plugins.appinfo.HibernateControllerMixin':   'com.burtbeckwith.appinfo_test.AdminManageController', 
   'com.burtbeckwith.grails.plugins.appinfo.Log4jControllerMixin' :      'com.burtbeckwith.appinfo_test.AdminManageController', 
   'com.burtbeckwith.grails.plugins.appinfo.SpringControllerMixin' :     'com.burtbeckwith.appinfo_test.AdminManageController', 
   'com.burtbeckwith.grails.plugins.appinfo.MemoryControllerMixin' :     'com.burtbeckwith.appinfo_test.AdminManageController', 
   'com.burtbeckwith.grails.plugins.appinfo.PropertiesControllerMixin' : 'com.burtbeckwith.appinfo_test.AdminManageController', 
   'com.burtbeckwith.grails.plugins.appinfo.ScopesControllerMixin' :     'com.burtbeckwith.appinfo_test.AdminManageController', 
   'com.burtbeckwith.grails.plugins.appinfo.ThreadsControllerMixin' :    'com.burtbeckwith.appinfo_test.AdminManageController' 
] 
于 2013-08-15T17:48:19.580 回答