@JFinal 你好,想跟你请教个问题:目前用到SpringPlugin,用到IOC只能使用在Controller层,请问有什么方法能用于Service层或Model层,请帮忙解决下,谢谢
记住,new一个远比注入划算。。。
因为Service都设计成无状态的,因此,new一个静态的就更好。。。
如例子 @Before(IocInterceptor.class) @Inject.BY_NAME private LoginService loginService; 想换成 Spring 的 @Autowired 或@Resource , 去掉 @Before(IocInterceptor.class) 请问这样如何实现?
既然已经用到了 SpringPlugin,那么在 applicationContext.xml 中配置好注入到 controller 中的业务层就可以利用到 spring 的 IOC
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
记住,new一个远比注入划算。。。
因为Service都设计成无状态的,因此,new一个静态的就更好。。。
如例子 @Before(IocInterceptor.class) @Inject.BY_NAME private LoginService loginService; 想换成 Spring 的 @Autowired 或
@Resource , 去掉 @Before(IocInterceptor.class) 请问这样如何实现?
既然已经用到了 SpringPlugin,那么在 applicationContext.xml 中配置好注入到 controller 中的业务层就可以利用到 spring 的 IOC