码迷,mamicode.com
首页 > 编程语言 > 详细

Spring In Action-2.1-02-@Component注解给Bean命名

时间:2017-09-01 20:28:18      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:exce   get   one   print   art   pat   void   log   text   

package soundsystem;

import org.springframework.stereotype.Component;

//@Component注解会告诉Spring创建这个类的实例bean(注意,启动Component注解功能需要在xml里面配置)
@Component("newName")
public class SgtPeppers implements CompactDisc {

    private String title="Pepper‘s Lonely";
    private String artist="The beatles";
    
    SgtPeppers(){
        System.out.println("SgtPeppers类实例化");
    }
    
    public void play() {
        System.out.println("Sgt Playing:title="+title+" artist="+artist);
    }

}
package soundsystem;

import org.junit.BeforeClass;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class SpringTest2 {

    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
    }

    @Test 
    public void instanceSpring(){
        //将配置传过去,实例化容器
        ApplicationContext ctx = new ClassPathXmlApplicationContext("bean.xml");
        SgtPeppers sp = (SgtPeppers)ctx.getBean("newName");
        sp.play();
    }
}

 

@Component("newName")//给Bean实例重新命名为:newName 
@Component//Bean实例默认命名:类名首字母小写
 

Spring In Action-2.1-02-@Component注解给Bean命名

标签:exce   get   one   print   art   pat   void   log   text   

原文地址:http://www.cnblogs.com/zjsy/p/7464835.html

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