Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我喜欢 grails 提供环境相关检查的方式,因此我只能在测试时在 BootStrap 中运行某些东西(Environment.current == Environment.TEST)。我已经编写了一些我想在每次测试时运行的常规代码,而且效果很好!
Environment.current == Environment.TEST
现在我希望每次运行时都运行一些 groovy 代码grails clean。grails 项目中是否有任何地方运行在干净的地方,我可以在其中添加一些代码?
grails clean
scripts/_Events.groovy如果它不存在则创建并将代码添加到“CleanStart”事件的处理程序中:
scripts/_Events.groovy
eventCleanStart = { kind -> // do work here }
ps 那是Environment.TEST
Environment.TEST