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 控制台中获取服务?我的业务规则在服务中实现,但我无法在 grails 控制台中访问它们。有谁知道如何帮助我?
SpringApplicationContext可作为ctx控制台中的变量使用,您可以使用它来访问 Spring bean,例如服务。通常是这样,def myService = ctx.getBean('myService')但是 Grails 添加了一个元类助手,所以你可以这样做def myService = ctx.myService
ApplicationContext
ctx
def myService = ctx.getBean('myService')
def myService = ctx.myService