Spring理解第一节-容器,IOC(Inversion of Control) and DI(Dependency Injection)

1,基本概念

1)Gradle构建compile 'org.springframework:spring-context:4.3.12.RELEASE'
2)在应用spring时,有两个地方可以声明一个bean。一个是在spring的xml配置文件中配置<bean>(或者@Configuration中定义bean方法);一个是在代码中通过Component等标注声明。(Component、Repository、Service以及Controller)
3)BeanFactory接口,用于访问Spring的bean容器。The root interface for accessing a Spring bean container.

image.png

singletonObjects用户缓存singleton bean
image.png

ApplicationContext是BeanFactory的子接口Central interface to provide configuration for an application.,它extends ListableBeanFactory。
image.png

AnnotationConfigApplicationContext标准的应用上下文(@since 3.0)Standalone application context, accepting annotated classes as input,继承GenericApplicationContext(拥有属性DefaultListableBeanFactory)
DefaultListableBeanFactory它有一个beanDefinitionMap,来存放bean的定义。private final Map<String, BeanDefinition> beanDefinitionMap = new ConcurrentHashMap<String, BeanDefinition>(256);
image.png

4)容器通过读取元配置,来初始化bean容器,然后指导对象的初始化、配置和组装。The container gets its instructions on what objects to instantiate, configure, and assemble by reading configuration metadata.
元配置可以通过xml、Java注解以及Java代码表示。configuration metadata is represented in XML, Java annotations, or Java code.
XML元配置:XML-based configuration metadata shows these beans configured as <bean/> elements inside a top-level <beans/> element.
Java-Based配置:Java configuration typically uses @Bean annotated methods within a @Configuration class.

2,主要注解和jar包。

1)spring-context包中的主要注解。
@Configuration通过@Configuration注解类,里面包含beans方法。declares bean methods, processed by the Spring container
@Bean注解在方法上, 可以产生一个由spring容器管理的bean对象。Indicates that a method produces a bean to be managed by the Spring container.
@Component注解类上,该类可以被spring自动检测,成为spring容器的bean。可以处理@Autowired等注解。when using annotation-based configuration and classpath scanning. this class can be auto-detection
@ComponentScan(value = "com.hzq.ioc")配置spring组件的扫描路径。Configures component scanning directives. default is this package
2)spring-context依赖引入几个spring jar包。
spring-core,spring的核心工具类,是其他组件的核心基础。eg: org.springframework.util.Assert断言类,org.springframework.util.StringUtils字符串工具类,org.springframework.util.DigestUtils处理MD5信息
spring-expression,spring的表达式语言。
spring-beans,含访问配置文件、创建和管理bean、以及进行IOC操作。如果应用只需基本的IoC/DI 支持,引入spring-core.jar 及spring-beans.jar 文件就可以了。
spring-aop,使用基于AOP 的Spring特性。如声明型事务管理(Declarative Transaction Management)需要aop的支持。
spring-context,为Spring 核心提供了大量扩展。提供ApplicationContext,从注解的类中获取bean的定义,并自动刷新spring的context。deriving bean definitions from the given annotated classes and automatically refreshing the context
3)面向接口编程。
@Bean注解bean方法和@Service / @Component等注解实现类。都可以将生成的bean对象,交给spring container管理。
正常情况,当一个bean交由spring container管理, 在其他地方注入该bean, 都是同一个对象。(单例,无状态的类。)

4)例子

@Bean//Indicates that a method produces a bean to be managed by the Spring container.
public MessageService messageService() {
    return new MessageServiceImpl();
}

//@Service,This annotation serves as a specialization of @Component,
allowing for implementation classes to be autodetected through classpath scanning.
@Component // 或者@Service 
public class MessageServiceImpl implements MessageService{

    @Override
    public void printMessage() {
        System.out.println(this.getMessage());
    }

    @Override
    public String getMessage() {
        return "I am message";
    }
}
package com.hzq.ioc.msg;

/**
 * Created by hzq on 2017/10/14.
 */
public interface MessageService {

    /**
     * 打印msg的信息
     */
    void printMessage();

    /**
     * 获取message信息
     * @return
     */
    String getMessage();

}

package com.hzq.ioc.msg;

/**
 * Created by hzq on 2017/10/14.
 */
public class MessageServiceImpl implements MessageService{

    @Override
    public void printMessage() {
        System.out.println(this.getMessage());
    }

    @Override
    public String getMessage() {
        return "I am message";
    }
}

package com.hzq.ioc.msg;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

/**
 * Created by hzq on 2017/10/14.
 */
@Component
public class InvokeMessage {

    @Autowired//成员变量注入
    private MessageService messageService;

    private MessageService messageService2;

    @Autowired//成员方法注入
    public void injectionMessage(MessageService messageService){
        System.out.println("这里注入 messageService2");
        this.messageService2 = messageService;
    }

    public void testInjectionMessage(){
        // 注入的是同一个对象
        System.out.println("注入的两个对象相等吗?" + (messageService == messageService2));
        this.messageService.printMessage();
        messageService2.printMessage();
    }

}

package com.hzq.ioc;

import com.hzq.ioc.msg.InvokeMessage;
import com.hzq.ioc.msg.MessageService;
import com.hzq.ioc.msg.MessageServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Component;

/**
 * Created by hzq on 2017/10/14.
 */
@Configuration//declares bean methods, processed by the Spring container
@ComponentScan(value = "com.hzq.ioc")//Configures component scanning directives. default this package
@Component//when using annotation-based configuration and classpath scanning. this class auto-detection
public class Application {

    @Bean//Indicates that a method produces a bean to be managed by the Spring container.
    public MessageService messageService() {
        return new MessageServiceImpl();
    }

    public static void main(String[] args) {
        // deriving bean definitions from the given annotated classes
        // and automatically refreshing the context.
        ApplicationContext context = new AnnotationConfigApplicationContext(Application.class);
//获取bean的两种方式
//1,<bean>xml配置、@Bean方法
//2,使用@Component等注解标识
        MessageService messageService = context.getBean(MessageService.class);
        messageService.printMessage();

        InvokeMessage invokeMessage = context.getBean(InvokeMessage.class);//自动检测到,交由spring容器管理
        invokeMessage.testInjectionMessage();
    }

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,948评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,371评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,490评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,521评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,627评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,842评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,997评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,741评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,203评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,534评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,673评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,339评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,955评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,770评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,000评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,394评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,562评论 2 349

推荐阅读更多精彩内容