首页 > 编程语言 > 详细

Spring MVC 注解方式 静态类 注入bean

时间:2016-03-30 16:42:16      阅读:466      评论:0      收藏:0      [点我收藏+]
//核心代码
@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

Spring MVC 注解方式 静态类 注入bean

原文:http://andylhx.blog.51cto.com/8891164/1758321

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!