自定义Stater

2.3 自定义Stater
SpringBoot starter机制
​ SpringBoot由众多Starter组成(一系列的自动化配置的starter插件),SpringBoot之所以流行,也是因为starter。
starter是SpringBoot非常重要的一部分,可以理解为一个可拔插式的插件,正是这些starter使得使用某个功能的开发者不需要关注各种依赖库的处理,不需要具体的配置信息,由Spring Boot自动通过classpath路径下的类发现需要的Bean,并织入相应的Bean。
例如,你想使用Reids插件,那么可以使用spring-boot-starter-redis;如果想使用MongoDB,可以使用spring-boot-starter-data-mongodb
为什么要自定义starter
开发过程中,经常会有一些独立于业务之外的配置模块。如果我们将这些可独立于业务代码之外的功能配置模块封装成一个个starter,复用的时候只需要将其在pom中引用依赖即可,SpringBoot为我们完成自动装配
自定义starter的命名规则
SpringBoot提供的starter以spring-boot-starter-xxx的方式命名的。官方建议自定义的starter使用xxx-spring-boot-starter命名规则。以区分SpringBoot生态提供的starter
整个过程分为两部分:

自定义starter

使用starter

首先,先完成自定义starter
(1)新建maven jar工程,工程名为zdy-spring-boot-starter,导入依赖:

org.springframework.boot

spring-boot-autoconfigure

2.2.2.RELEASE


12345678910111213141516171819
(2)编写javaBean

@EnableConfigurationProperties(SimpleBean.class)

@ConfigurationProperties(prefix =
"simplebean")

public class SimpleBean {

private int id;

private String name;

public int getId() {

return id;

}



public void setId(int id) {

this.id = id;

}



public String getName() {

return name;

}



public void setName(String name) {

this.name = name;

}



@Override

public String toString() {

return "SimpleBean{" +

            "id=" + id +

            ", name='" + name +

''' +

            '}';

}

}
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
(3)编写配置类MyAutoConfiguration

@Configuration

@ConditionalOnClass //@ConditionalOnClass:当类路径classpath下有指定的类的情况下进行自动配置

public class MyAutoConfiguration {

static {

System.out.println("MyAutoConfiguration init....");

}





@Bean

public SimpleBean simpleBean(){

return new SimpleBean();

}


}
12345678910111213141516171819202122232425262728293031323334353637
(4)resources下创建/META-INF/spring.factories
注意:META-INF是自己手动创建的目录,spring.factories也是手动创建的文件,在该文件中配置自己的自动配置类

org.springframework.boot.autoconfigure.EnableAutoConfiguration=\

com.lagou.config.MyAutoConfiguration

12345
使用自定义starter
(1)导入自定义starter的依赖

com.lagou

zdy-spring-boot-starter

1.0-SNAPSHOT


123456789101112131415
学习让人快乐,学习更让人觉得无知!学了1个多月的《Java工程师高薪训练营》,才发现自己对每个技术点的认知都很肤浅,根本深不下去,立个Flag:每天坚持学习一小时,一周回答网上3个技术问题,把自己知道都分享出来。

你可能感兴趣的:(java,spring)