将服务注入 Grails Atmosphere Handler 类
我有一个NotificationsAtmosphereHandler 作为我的Grails 应用程序中的Atmosphere 框架处理程序类。我想在其中使用 springSecurityService 服务。如何将服务对象注入到我的处理程序类中?
def springSecurityService
通常的服务注入不起作用。
I have an NotificationsAtmosphereHandler as an Atmosphere framework handler class in my Grails application. I would like to use springSecurityService service inside of it. How I can inject service object into my handler class?
def springSecurityService
The usual service injection does not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
resources.xml:
在类中:
resources.xml:
in class:
或者更确切地说,在 resources.groovy 中以 Groovy 方式进行操作:
这样,您也不需要 @Autowired 符号。
or rather do it the Groovy way in your resources.groovy:
this way, you don't need the @Autowired notation also.