spring中像AlarmUtils或者CtsService这样的工具类,怎么引入spring的bean呢?
我们知道,工具类通常都是static方法,如果直接引用xxxbean,那么xxxbin的变量必须要声明为static类型,这怎么行呢,spring框架new出来的那个实例就注入不进来了啊?
如何解决?
直接在工具类的static方法中,使用
XxxUtils xxx = SpringContextUtil.getBean("beanName")
获取实例。
spring中像AlarmUtils或者CtsService这样的工具类,怎么引入spring的bean呢?
我们知道,工具类通常都是static方法,如果直接引用xxxbean,那么xxxbin的变量必须要声明为static类型,这怎么行呢,spring框架new出来的那个实例就注入不进来了啊?
如何解决?
直接在工具类的static方法中,使用
XxxUtils xxx = SpringContextUtil.getBean("beanName")
获取实例。