微服务之 Spring 框架核心

Spring 如雷贯耳, 在 Java Web 开发领域无人不晓, 似乎也没什么可说的, 不过时至今日, Spring 已经不仅仅是一个应用程序框架, 一个控制反转容器, 而是一个开源框架的集合, Spring 也已经是 Java 世界中事实上的标准, J2EE 从标准制定者变为模仿者.

Spring 的第一版是 Rod Johson 在写下面这本书的时候开发出来.

这本书2002 写成, 我2006年的时候来买了一本中文版, 也才正式接触了 Spring , 时间过得真快, 12年过去了, Spring 从1.0 发展到了 5.0 版本, Spring 社区也发展壮大如斯

核心框架变化不小, 子项目也林林总总一大堆. 光是 Spring 框架就需要用一本书或一套书的内容来讲述, 我也不可能在这里讲深讲透, 大家其实多数也都知道, 这里只简单总结一下 Spring 框架的基本理念和核心技术

Spring 的核心其实就是通过容器来实现 IoC 和 AOP, 再加上众多的注解, 大大简化了配置, 先来回顾一下 IoC Container 控制反转容器

IoC(Inversion of Control) 也称为依赖注入(Dedency Injection) , 这是一个设置依赖关系的过程,通过这个过程,对象定义它们的依赖关系,即它们使用的其他对象,只能通过构造函数参数,工厂方法的参数,或者在构造或从工厂方法返回后在对象实例上设置的属性。 然后容器在创建bean时注入这些依赖项。因为这个过程是相反的,所以叫做 Inversion of Control(IoC),bean本身通过使用类的直接构造或诸如Service Locator模式之类的机制来控制其依赖关系的实例化或位置。

org.springframework.beans 和 org.springframework.context 包 是Spring Framework的IoC容器的基础。 BeanFactory接口提供了一种能够管理任何类型对象的高级配置机制。 ApplicationContext是BeanFactory的子接口。它增加了与Spring的AOP功能的更容易的集成;消息资源处理(用于国际化),事件发布;和特定于应用程序层的上下文,例如WebApplicationContext,用于Web应用程序。

简而言之,BeanFactory提供配置框架和基本功能,ApplicationContext添加了更多高级功能。 ApplicationContext 是 BeanFactory 的超集.

@startuml

BeanFactory <|-- ListableBeanFactory 
ListableBeanFactory <|-- ApplicationContext 
ApplicationContext <|-- ConfigurableApplicationContext
ApplicationContext <|-- WebApplicationContext
WebApplicationContext <|-- ConfigurableWebApplicationContext
ConfigurableWebApplicationContext <|.. AbstracRefreshableConfigurableWebApplicationContext
ConfigurableApplicationContext <|.. AbstractApplicationContext  
AbstractApplicationContext <|-- GenericApplicationContext  
GenericApplicationContext <|-- AnnotationConfigApplicationContext
AbstracRefreshableConfigurableWebApplicationContext <|-- AnnotationConfigWebApplicationContext

@enduml

传统的基于 XML 配置文件的 ClassPathXmlApplicationContext 已经落伍了, 更加简洁是基于注解的 Java 文件配置方式.

ApplicationContext 也就是Spring 容器管理bean的生命周期,包括对象的创建,销毁等, 所以我们只需从容器直接获取Bean对象就行,而不用编写代码来创建bean对象.

Bean 的生命周期由容器管理, 有如下 Bean Scope

Scope Description
singleton 缺省值, 将 Bean 的范围定义为单例
prototype 将 Bean 的范围定义为原型, 也就是会有多少对象实例
request 将 Bean 的范围定义在 HTTP Request 的生命周期内, 一个 Http 请求有一个 Bean 实例, 这个范围类型只在 web-aware 即 Web 类型的 ApplicationContext 中才有效
session 将 Bean 的范围定义在 HTTP Session 的生命周期内, 只在 web-aware 即 Web 类型的 ApplicationContext 中才有效
application 将 Bean 的范围定义在 ServletContext 的生命周期内, 只在 web-aware 即 Web 类型的 ApplicationContext 中才有效
websocket 将 Bean 的范围定义在 WebSocket 的生命周期内, 只在 web-aware 即 Web 类型的 ApplicationContext 中才有效

而在 Bean 的创建销毁的你都可以注册若干处理器, 例如 BeanPostProcessor, 容器在创建完 Bean 的时候会调用它来完成一个后续工作, 比如依赖项的注入, 构造函数完成之后的一些初始化工作

举例如下:

  • 入口类 MainApp, 在 main 函数中创建了一个AnnotationConfigApplicationContext
  • 配置类 MainConfig, 定义放在容器中的若干类
  • 类 FileService 默认 scope 单例, 加了两个由 @PostConstruct 和 @PreDestroy 注解修饰的方法
  • 类 Pot
    ato , 设置 scope 是 prototype, 会有多个实例
  • 类 LogBeanPostProcessor 是一个 Bean 创建之后的处理类, 也就是打一行 Log

(使用了lombok 的 @Slf4j @Data 来自动生成 log 和 setter/getter/toString 之类的代码, 参见 https://projectlombok.org/ )

    1. MainApp
package com.github.walterfan.hellospring;

import lombok.ToString;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.core.io.support.ResourcePropertySource;

import java.io.IOException;
import java.nio.file.Path;
import java.util.List;
import java.util.function.Function;


@Slf4j
public class MainApp
{

    @Autowired
    private FileService fileService;

    public static void main(String[] args) throws IOException
    {
        try(AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext()) {

            ctx.getEnvironment().getPropertySources().addFirst(
                    new ResourcePropertySource("classpath:application.properties"));


            ctx.register(LogBeanPostProcessor.class);
            ctx.register(MainConfig.class);
            ctx.refresh();

            MainApp app = ctx.getBean(MainApp.class);

            Potato p1 = ctx.getBean(Potato.class, "sleep");


            log.info("Potato1: {}" , p1);


            Function<String, Potato> factory = (Function<String, Potato> )ctx.getBean("potatoFactory", "sleep");
            Potato p2 = factory.apply("read");

            log.info("Potato2: {}" , p2);
            log.info("App Id: {}" , ctx.getEnvironment().getProperty("app.id"));

            app.listFiles(".", ".java");
        }


    }

    public void listFiles(String dirName, String fixExt) {
        try {
            System.out.println("-- list files --");
            List<Path> files = fileService.getFiles(dirName, fixExt);
            files.forEach(System.out::println);
        } catch (IOException e) {
            log.error("listFiles error", e);
        }

    }

    @Override
    public String toString() {
        return "MainApp { fileService=" + fileService + '}';
    }
}

    1. MainConfig
package com.github.walterfan.hellospring;

import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Scope;

import java.time.Instant;
import java.util.concurrent.atomic.AtomicLong;
import java.util.function.Function;


@Configuration
@Slf4j
public class MainConfig
{
    private AtomicLong idGeneerator = new AtomicLong(0);

    @Bean
    public Function<String, Potato> potatoFactory() {
        return name -> {
            Potato p = getPotato(name);
            p.setCreateTime(Instant.now());
            return p;
        };
    }

    @Bean
    @Scope("prototype")
    public Potato getPotato(String name)
    {
        Potato p = new Potato();
        p.setId(String.valueOf(idGeneerator.incrementAndGet()));
        p.setName(name);

        return p;
    }

    @Bean
    public MainApp mainApp()
    {
        return new MainApp();
    }

    @Bean
    public FileService fileSerivce()
    {
        return new FileService();
    }
}
    1. FileService
package com.github.walterfan.hellospring;

import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;


import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;

import static java.util.stream.Collectors.toList;

@Slf4j
@Service
public class FileService {

    public List<Path> getFiles(String dirName, String fileExt) throws IOException {
        Path filePath = Paths.get(dirName);
        return Files.walk(filePath)
                .filter(s -> s.toString().endsWith(fileExt))
                .map(Path::getFileName)
                .sorted()
                .collect(toList());
    }

    @Override
    public String toString() {
        return "FileService";
    }

    @PostConstruct
    public void setup() {
        log.info("FileService setup");
    }

    @PreDestroy
    public void teardown() {
        log.info("FileService teardown");
    }
}

    1. Potato.java
package com.github.walterfan.hellospring;

import lombok.Data;
import lombok.extern.slf4j.Slf4j;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import java.time.Instant;
import java.util.List;

@Data
@Slf4j
public class Potato {
    private String id;

    private String name;

    private int priority;

    private String description;

    private List<String> tags;

    private Instant deadline;

    private Instant createTime;

    @PostConstruct
    public void setup() {
        log.info("Potato setup");
    }

    @PreDestroy
    public void teardown() {
        log.info("Potato teardown");
    }
}

  1. LogBeanPostProcessor
package com.github.walterfan.hellospring;


import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.config.BeanPostProcessor;

@Slf4j
public class LogBeanPostProcessor implements BeanPostProcessor {
    
    public Object postProcessBeforeInitialization(Object bean, String beanName) {
        log.info("Bean '" + beanName + "' postProcessBeforeInitialization ");
        return bean;
    }

    public Object postProcessAfterInitialization(Object bean, String beanName) {
        log.info("Bean '" + beanName + "' postProcessAfterInitialization : " + bean.toString());
        return bean;
    }
}

运行结果如下

08:31:53.126  INFO  o.s.c.a.AnnotationConfigApplicationContext Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@735b5592: startup date [Sun Aug 12 08:31:53 CST 2018]; root of context hierarchy
08:31:53.451  INFO  c.g.w.h.LogBeanPostProcessor Bean 'org.springframework.context.event.internalEventListenerProcessor' postProcessBeforeInitialization 
08:31:53.451  INFO  c.g.w.h.LogBeanPostProcessor Bean 'org.springframework.context.event.internalEventListenerProcessor' postProcessAfterInitialization : org.springframework.context.event.EventListenerMethodProcessor@7a69b07
08:31:53.455  INFO  c.g.w.h.LogBeanPostProcessor Bean 'org.springframework.context.event.internalEventListenerFactory' postProcessBeforeInitialization 
08:31:53.455  INFO  c.g.w.h.LogBeanPostProcessor Bean 'org.springframework.context.event.internalEventListenerFactory' postProcessAfterInitialization : org.springframework.context.event.DefaultEventListenerFactory@3f197a46
08:31:53.460  INFO  c.g.w.h.LogBeanPostProcessor Bean 'mainConfig' postProcessBeforeInitialization 
08:31:53.460  INFO  c.g.w.h.LogBeanPostProcessor Bean 'mainConfig' postProcessAfterInitialization : com.github.walterfan.hellospring.MainConfig$$EnhancerBySpringCGLIB$$4df33095@6ca8564a
08:31:53.589  INFO  c.g.w.h.LogBeanPostProcessor Bean 'potatoFactory' postProcessBeforeInitialization 
08:31:53.589  INFO  c.g.w.h.LogBeanPostProcessor Bean 'potatoFactory' postProcessAfterInitialization : com.github.walterfan.hellospring.MainConfig$$Lambda$1/934275857@5c5eefef
08:31:53.607  INFO  c.g.w.h.LogBeanPostProcessor Bean 'fileSerivce' postProcessBeforeInitialization 
08:31:53.607  INFO  c.g.w.hellospring.FileService FileService setup
08:31:53.607  INFO  c.g.w.h.LogBeanPostProcessor Bean 'fileSerivce' postProcessAfterInitialization : FileService
08:31:53.608  INFO  c.g.w.h.LogBeanPostProcessor Bean 'mainApp' postProcessBeforeInitialization 
08:31:53.609  INFO  c.g.w.h.LogBeanPostProcessor Bean 'mainApp' postProcessAfterInitialization : MainApp { fileService=FileService}
08:31:53.656  INFO  c.g.w.h.LogBeanPostProcessor Bean 'getPotato' postProcessBeforeInitialization 
08:31:53.656  INFO  c.g.walterfan.hellospring.Potato Potato setup
08:31:53.656  INFO  c.g.w.h.LogBeanPostProcessor Bean 'getPotato' postProcessAfterInitialization : Potato(id=1, name=sleep, priority=0, description=null, tags=null, deadline=null, createTime=null)
08:31:53.657  INFO  c.g.walterfan.hellospring.MainApp Potato1: Potato(id=1, name=sleep, priority=0, description=null, tags=null, deadline=null, createTime=null)
08:31:53.660  INFO  c.g.w.h.LogBeanPostProcessor Bean 'getPotato' postProcessBeforeInitialization 
08:31:53.660  INFO  c.g.walterfan.hellospring.Potato Potato setup
08:31:53.661  INFO  c.g.w.h.LogBeanPostProcessor Bean 'getPotato' postProcessAfterInitialization : Potato(id=2, name=read, priority=0, description=null, tags=null, deadline=null, createTime=null)
08:31:53.662  INFO  c.g.walterfan.hellospring.MainApp Potato2: Potato(id=2, name=read, priority=0, description=null, tags=null, deadline=null, createTime=2018-08-12T00:31:53.662Z)
08:31:53.689  INFO  c.g.walterfan.hellospring.MainApp App Id: hellospring
-- list files --
FileService.java
MainApp.java
MainConfig.java
Potato.java

如上所示, MainApp, MainConfig, FileService 是单例, 只会有一个, 在容器创建时创建, 容器销毁时销毁,
而类 Potato 的 scope 是原型, 容器会创建了多个实例, 每个实例创建完后就会调用 LogBeanPostProcessor 的 postProcessBeforeInitialization 方法, Bean被 @PostConstruct 修饰过的postProcessAfterInitialization 方法

参考资料

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

推荐阅读更多精彩内容