码迷,mamicode.com
首页 > 其他好文 > 详细

@Autowired认识

时间:2015-02-11 14:37:34      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:spring   autowired   

package com.studySpring;   
import org.springframework.beans.factory.annotation.Autowired;   
  
public class Boss {   
  
    @Autowired  
    private Car car;   
  
    @Autowired  
    private Office office;   
  
    …   

}   

其中的@Autowired 会自动在spring的配置中找到名为car和名为office的bean,分别为这里两个私有成员变量进行注入。这里get/set方法可省略。


@Autowired认识

标签:spring   autowired   

原文地址:http://blog.csdn.net/xixi_haha123/article/details/43733097

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!