Springboot笔记(5):自定义starter/狂神说

目录

1、自定义启动器

2、编写启动器

3、测试启动器


1、自定义启动器

说明:启动器模块是一个 空 jar 文件(kuang-spring-boot-starter),仅提供辅助性依赖管理,这些依赖可能用于自动装配或者其他类库

命名归约:

官方命名:

  • 前缀:spring-boot-starter-xxx

    • 比如:spring-boot-starter-web....

自定义命名:

  • xxx-spring-boot-starter

    • 比如:mybatis-spring-boot-starter

2、编写启动器

1、在IDEA中新建一个空项目 spring-boot-starter-diy

注意:是maven项目 

Springboot笔记(5):自定义starter/狂神说_第1张图片

2、新建一个普通Maven模块:kuang-spring-boot-starter

Springboot笔记(5):自定义starter/狂神说_第2张图片

3、新建一个Springboot模块:kuang-spring-boot-starter-autoconfigure 

Springboot笔记(5):自定义starter/狂神说_第3张图片

Springboot笔记(5):自定义starter/狂神说_第4张图片 4、点击apply即可,基本结构

Springboot笔记(5):自定义starter/狂神说_第5张图片

5、在kuang-spring-boot=-starter模块中 导入  autoconfigure 的依赖! 

Springboot笔记(5):自定义starter/狂神说_第6张图片

 
     com.kuang
      kuang-spring-boot-starter-autoconfigure
      0.0.1-SNAPSHOT

6、将 kuang-spring-boot-starter-autoconfigure 模块的pom中多余的文件都删掉,Pom中只留下一个 starter,这是所有的启动器基本配置!

Springboot笔记(5):自定义starter/狂神说_第7张图片


     org.springframework.boot
     spring-boot-starter
 

7、在 kuang-spring-boot-starter-autoconfigure 模块中 编写一个自己的服务

public class HelloService {

    private HelloProperties helloProperties;

    public HelloProperties getHelloProperties() {
        return helloProperties;
    }

    public void setHelloProperties(HelloProperties helloProperties) {
        this.helloProperties = helloProperties;
    }

    public String sayHello(String name){
        return helloProperties.getPrefix() + name + helloProperties.getSuffix();
    }
}

8、编写HelloProperties 配置类

@ConfigurationProperties(prefix = "kuang.hello")
public class HelloProperties {

    private String prefix;
    private String suffix;

    public String getPrefix() {
        return prefix;
    }

    public void setPrefix(String prefix) {
        this.prefix = prefix;
    }

    public String getSuffix() {
        return suffix;
    }

    public void setSuffix(String suffix) {
        this.suffix = suffix;
    }
}

application.properties

kuang.hello.prefix=a
kuang.hello.suffix=b

9、编写我们的自动配置类并注入bean,测试!

@Configuration
@ConditionalOnWebApplication//web
@EnableConfigurationProperties(HelloProperties.class)
public class HelloServiceAutoConfiguration {

    @Autowired
    private HelloProperties helloProperties;

    @Bean
    public HelloService helloService(){
        HelloService helloService = new HelloService();
        helloService.setHelloProperties(helloProperties);
        return helloService;
    }

}

10、在resources编写一个自己的 META-INF\spring.factories

org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
  com.kuang.HelloServiceAutoConfiguration

11、编写完成后,可以安装到maven仓库中!

Springboot笔记(5):自定义starter/狂神说_第8张图片

3、测试启动器

1、新建一个SpringBoot 项目

2、导入我们自己写的启动器


    com.kuang
    kuang-spring-boot-starter
    1.0-SNAPSHOT

 3、编写一个 HelloController  进行测试我们自己的写的接口!

@Controller
public class HelloController {

    @Autowired
    private HelloService helloService;

    @RequestMapping("/hello1")
    @ResponseBody
    public String hello1(){
        return helloService.sayHello("ddd");
    }
}

4、编写配置文件 application.properties

kuang.hello.prefix="ppp"kuang.hello.suffix="sss"

5、启动项目进行测试,结果成功 !

Springboot笔记(5):自定义starter/狂神说_第9张图片

笔记: 

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