SpringBoot入门

1. SpringBoot概述

SpringBoot:是spring系列的一款全新框架

特点:

①:快速搭建项目,简化开发流程

②:解决样板化的配置(之前使用spring的时候需要手动配置xml文件,而xml文件都是一种模板文件,每次都需要拷贝和修改,springboot使用注解式编程,不再需要xml配置文件)

2. SpringBoot的初体验

spring的三大核心:AOC DI AOP

学习SpringBoot从AOC和DI入手,看看它为我们简化了哪些!

AOC :控制反转,反转就是曾今需要使用new 的方式创建实例,而现在可以把创建实例交给spring管理,需要时从spring的容器中获取,并且如果实例拥有依赖关系,spring也会通过反射为我们注入!

使用spring的方式管理bean

  1. 导包
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>4.2.5.RELEASE</version>
        </dependency>
  1. 创建实体类
public class Mybean {}
  1. 配置xml,注入bean
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.0.xsd">
    <bean id="mybean" class="com.hanfengyi.xml_config.Mybean"></bean>
</beans>
  1. 测试
public class MybeanTest {
    @Test
    public void test(){
        ApplicationContext applicationContext = 
                new ClassPathXmlApplicationContext("applicationContext.xml");
        Mybean bean = applicationContext.getBean(Mybean.class);
        System.out.println(bean);
    }
}

加载配置文件,从应用上下文applicationContext中获取实例

使用springboot的方式创建bean

使用springboot的时候,不会去配置xml文件,而是使用java配置类!

  1. 创建一个实体类

    public class Mybean {}
    
  2. 创建一个配置类

    @Configuration
    public class ApplicationConfig {
        @Bean
        public Mybean mybean(){
            return new Mybean();
        }
    }
    
  3. 测试

    @Test
        public void test(){
            ApplicationContext context
                    = new AnnotationConfigApplicationContext(ApplicationConfig.class);
            Mybean bean = context.getBean(Mybean.class);
            System.out.println(bean);
        }
    

    <u>@Configuration:标识是一个配置类,spring会根据该注解加载配置类,去创建该配置类中的实例。</u>

    <u>@Bean:标注在方法上,该方法返回的实例会交给spring管理</u>

    ApplicationContext:使用spring的时候是用ClassPathXmlApplicationContext去读取配置文件,而使用springboot 的时候是用AnnotationConfigApplicationContext去加载配置类!

    3. SpringBoot配置类

    在xml配置文件中,对于一个实例,我们可以指定bean的名字、id、初始化方法、销毁方法、作用域、是否是懒加载...等,那么在配置类如何描述呢

    Bean的详细信息

    @Configuration
    public class ApplicationConfig {
        @Bean(name = "teacher",initMethod = "init",destroyMethod = "destroy")
        @Scope
        @Lazy
        public Teacher teacher(){
            return new Teacher();
        }
    }
    

    @Bean注解中可以指定bean的名字,初始化方法名,销毁方法名

    @Scope注解指定bean是单例还是多例,默认是单例,@Scope("prototype")表示是多例

    @Lazy注解指定bean是否是懒加载,@Lazy(true)表示是懒加载

    使用spring的测试

    public class Teacher {
        public void init(){
            System.out.println("初始化...");
        }
        public void destroy(){
            System.out.println("销毁...");
        }
    }
    
    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(classes = ApplicationConfig.class)
    public class TeacherTest {
        @Autowired
        private ApplicationContext applicationContext;
        @Test
        public void test(){
            Teacher bean = applicationContext.getBean(Teacher.class);
            System.out.println(bean);
        }
    }
    

    与之前使用spring的测试不同的地方,@ContextConfiguration需要传递配置类的字节码文件,去加载该配置类,ApplicationContext可以自动注入,通过它可以拿到所需要的bean!

    当然因为Teacher已经在加载配置类的时候放到了容器中了,所以可以直接拿到,不需要通过ApplicationContext,如下:

    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(classes = ApplicationConfig.class)
    public class TeacherTest {
        @Autowired
        private Teacher teacher;
        @Test
        public void test(){
            System.out.println(teacher);
        }
    }
    

    4. SpringBoot的DI

    SpringBoot的di依赖注入分为为普通字段注入值,为引用字段注入值!

    public class Mybean {
        private String name;
        private OtherBean otherBean;
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public OtherBean getOtherBean() {
            return otherBean;
        }
    
        public void setOtherBean(OtherBean otherBean) {
            this.otherBean = otherBean;
        }
    
        @Override
        public String toString() {
            return "Mybean{" +
                    "name='" + name + '\'' +
                    ", otherBean=" + otherBean +
                    '}';
        }
    }
    
    public class OtherBean {}
    
    1. 为普通字段设置值,很简单,直接在方法中调用set方法,并返回
    @Configuration
    public class ApplicationConfig {
        @Bean
        public Mybean mybean(){
            Mybean mybean =  new Mybean();
            mybean.setName("hello");
            return mybean;
        }
    
    1. 为引用字段设置值的方法很多,但是必须先交给spring管理

    ①:调用方法的方式

    @Configuration
    public class ApplicationConfig {
        @Bean
        public Mybean mybean(){
            Mybean mybean =  new Mybean();
            mybean.setName("hello");
            mybean.setOtherBean(otherBean());
            return mybean;
        }
        @Bean
        public OtherBean otherBean(){
            return new OtherBean();
        }
    }
    

    因为otherbean已经在spring容器中,调用方法的时候,会先从容器中去获取!

    ②:方法传参的方式

    @Configuration
    public class ApplicationConfig {
        @Bean
        public Mybean mybean(OtherBean otherBean){
            Mybean mybean =  new Mybean();
            mybean.setName("hello");
            mybean.setOtherBean(otherBean);
            return mybean;
        }
        @Bean
        public OtherBean otherBean(){
            return new OtherBean();
        }
    }
    

    ③:使用@Autowired自动注入的方式

    @Configuration
    public class ApplicationConfig {
        @Autowired
        private OtherBean otherBean;
        @Bean
        public Mybean mybean(){
            Mybean mybean =  new Mybean();
            mybean.setName("hello");
            mybean.setOtherBean(otherBean);
            return mybean;
        }
        @Bean
        public OtherBean otherBean(){
            return new OtherBean();
        }
    }
    

    5. SpringBoot的注解

    springboot为我们提供注解式编程,把传统的xml文件中的标签替换为注解!

    5.1 自动扫描 @ComponentScan

    1. 实体类上使用@Component
    @Component
    public class Students {}
    
    1. 配置类上使用@ComponentScan开启扫描,相当于是xml中的<context:component-scan> 会去扫描使用了@Component注解的类,交给spring管理
    @Configuration
    @ComponentScan
    public class ApplicationConfig {}
    

    5.2 Condition条件注解

    @Condition在bean上使用,标识该bean需要满足条件才被定义

    这里以一个案例来说明使用方法,比如需要系统环境是windows 10才定义bean,否则不定义!

    首先需要创建一个类实现Condition接口,来自定义条件!

    然后在使用了@Bean注解的方法上添加 @Conditional注解,他需要我们提供自定义条件类的class对象

    @Configuration
    public class ApplicationConfig {
        @Bean
        @Conditional(value = MyCondition.class)
        public People people(){
            return new People();
        }
    }
    
    public class MyCondition implements Condition {
        public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
            Environment environment = context.getEnvironment();
            System.out.println(environment);
            String property = environment.getProperty("os.name");
            System.out.println(property);
            if(property.equals("Windows 10")){
                return true;
            }
            return false;
        }
    }
    

    5.3 Import导入注解

    1. import注解

    ①:@Import可以导入一个配置类

    例如我需要在Mybean的配置类中去获取OtherBean对象

    先把OtherBean交给spring管理,然后在Mybean的配置类中导入OtherBean的配置类

    @Configuration
    public class OtherBeanConfig {
        @Bean
        public OtherBean otherBean(){
            return new OtherBean();
        }
    }
    
    @Configuration
    @Import(OtherBeanConfig.class)
    public class MybeanConfig {
        @Bean
        public Mybean mybean(){
            return new Mybean();
        }
    }
    
    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(classes = MybeanConfig.class)
    public class ImportConfigTest {
        @Autowired
        private ApplicationContext applicationContext;
        @Test
        public void test(){
            Mybean myBean = applicationContext.getBean(Mybean.class);
            OtherBean otherBean = applicationContext.getBean(OtherBean.class);
            System.out.println(myBean);
            System.out.println(otherBean);
        }
    }
    

    在测试的时候只需要加载Mybean的配置类即可,同样可以获取到OtherBean!

    ②:@Import可以导入一个普通类,它也会交给spring管理

    比如OtherBean就不用写它的配置类,当作一个普通类,直接使用@Import(OtherBean.class)引入

    @Configuration
    @Import(OtherBean.class)
    public class MybeanConfig {
        @Bean
        public Mybean mybean(){
            return new Mybean();
        }
    }
    
    1. ImportSelector导入选择器

    有时候我们定义的bean太多,此时可以使用ImportSelector来导入所需要的bean

    ①:创建一个自定义类实现ImportSelector接口,重写方法,需要我们返回一个字符串数组,该数组中包含了我们需要定义bean的全限定名

    public class MyImportSelector implements ImportSelector {
        public String[] selectImports(AnnotationMetadata importingClassMetadata) {
            return new String[]{"com.hanfengyi.importselector_config.OtherBean",
                    "com.hanfengyi.importselector_config.Mybean"};
        }
    }
    

    ②:在配置类中使用@Import传递我们自定义选择器的class对象,他会根据这些类的全限定名加载该类交给spring管理

    @Configuration
    @Import(MyImportSelector.class)
    public class ApplicationConfig {}
    
    1. ImportBeanDefinitionRegistrar bean定义注册器

    spring默认的创建bean的方式,spring启动时通过该注册器,去创建我们所需要的bean

    ①:创建一个自定义类实现ImportBeanDefinitionRegistrar接口,重写方法

    public class MyImportBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar {
        public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, 
                                            BeanDefinitionRegistry registry) {
            BeanDefinition mybeanDefinition = new RootBeanDefinition(Mybean.class);
            registry.registerBeanDefinition("myBean", mybeanDefinition);
            BeanDefinition otherBeanDefinition = new RootBeanDefinition(OtherBean.class);
            registry.registerBeanDefinition("otherBean", otherBeanDefinition);
        }
    }
    

    RootBeanDefinition:对bean进行封装注册

    ②:在配置类中使用@Import传递我们自定义注册器的class对象

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

推荐阅读更多精彩内容