//核心代码 @Controller public class Ly4sIFutil { private static Ly4sService myLy4sService; Ly4sService getLy4sService() { return myLy4sService; } //核心代码 @Resource(name = "Ly4sService") public void setLy4sService(Ly4sService ly4sService) { Ly4sIFutil.myLy4sService = ly4sService; } } 静态类 注入bean //核心代码 @Service("Ly4sService") public class Ly4sServiceImpl implements Ly4sService{ } 把注解写好,在applicationContext.xml引入 <context:annotation-config /> <!-- 使用 annotation 自动注册bean,并检查@Controller, @Service, @Repository注解已被注入 --> <context:component-scan base-package="com.ly" /> 由于注解方式无法注入静态成员,所以改为注入到setter方法。 再通过赋值实现bean注入静态类
本文出自 “编程的点点滴滴” 博客,请务必保留此出处http://andylhx.blog.51cto.com/8891164/1758321
原文:http://andylhx.blog.51cto.com/8891164/1758321