测试用例结束时发生异常



我正在使用Maven进行依赖管理。当我运行测试用例时,尽管测试用例成功通过,但在测试用例结束时会出现异常。

以下是我的堆栈跟踪:

2013-10-08 16:04:22,839 [Thread-15] ERROR plugins.DefaultGrailsPlugin  - Error configuration     scaffolding: Error creating bean with name 'instanceControllersApi': Singleton bean creation not allowed while the singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
Message: Error creating bean with name 'instanceControllersApi': Singleton bean creation not allowed while the singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
Line | Method
->> 662 | run in java.lang.Thread
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -     

我正在使用Grails 2.1.3。我已经尝试了"静态"和"动态"脚手架,但它没有解决问题。

我还提到了这个例外意味着什么?问题,但没有运气。

一个有类似错误的用户通过删除他的~/.grails目录中的项目文件夹来修复它。http://grails.1312388.n4.nabble.com/Database-migration-plugin-Running-dbm-gorm-diff-results-Error-creating-bean-with-name-instanceContro-td4637567.html

一个好的圣杯清洁也可能有所帮助,并且侵入性较小。

此外,如果可以通过源代码管理(git、mercurial、svn)共享项目,则可以尝试在另一台计算机上重现该问题。如果不能,则表明该问题是环境特有的,可以通过某种清理来解决。

我已经解决了我的问题。我不确定为什么会发生这种情况,但我有很多控制器,其中脚手架=true。我生成了所有控制器和视图,它解决了我的问题。

相关内容

  • 没有找到相关文章

最新更新