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

Spring基于java的配置

时间:2014-07-07 20:56:54      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   使用   

第一步:在XML中配置java信息,与自动检测配置XML一样:

<context:component-scan
base-package="com.springinaction.springidol">
</context:component-scan>

第二步:定义配置类

bubuko.com,布布扣

第三步:声明bean和bean的注入:

package com.springinaction.springidol;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * 这个类是使用java来配置Spring的configuration类,@configuration标注了该类为配置类
 **/

@Configuration
public class SpringIdolConfig {

    
    @Bean
    //函数名就是bean的id
    public Performer duke(){
        //调用Juggler的构造方法即可,此处15相当于是通过构造器方法注入了值
        return new Juggler(15);
    }
    
    @Bean
    public Performer kenny(){
        Instrumentalist kenny = new Instrumentalist();
        //通过set方法注入值
        kenny.setSong("Jingle bell");
        return kenny;
    }
    
    @Bean
    public Poem sonnet29(){
        return new Sonnet29();
    }
    
    //在一个bean中注入另一个bean,sonnet29()方法返回的是上下文中的同一个实例
    @Bean
    public Performer poeticDuke(){
        //此处通过构造方法注入了一个bean的引用
        return new PoeticJuggler(sonnet29());
    }
    
    @Bean
    public Performer poeticDuke1(){
        
        PoeticJuggler poeticDuke1 = new PoeticJuggler();
        //此处通过setter方法注入了一个bean的引用
        poeticDuke1.setPoem(sonnet29());
        return poeticDuke1;
        
    }
}

Spring基于java的配置,布布扣,bubuko.com

Spring基于java的配置

标签:style   blog   http   java   color   使用   

原文地址:http://www.cnblogs.com/hewenwu/p/3813147.html

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