spring bootカスタムstarter【エッセイ】


カスタムstarter
starter:
1、このシーンで使うべき依存は何ですか?
2、自動配置の編集方法
@Configuration  //           
@ConditionalOnXXX  //                  
@AutoConfigureAfter  //          
@Bean  //        

@ConfigurationPropertie    xxxProperties         
@EnableConfigurationProperties // xxxProperties        

         
              ,   META-INF/spring.factories
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,\
org.springframework.boot.autoconfigure.aop.AopAutoConfiguration,\
3、モード:
ランチャーは依存導入のみに使用されます.
自動設定モジュールを専門に書きます.
ランチャー依存自動配置;他の人はスターターを導入するだけです.
mybatis-spring-boot-starter;カスタムランチャー名-spring-boot-starter
ステップ:
1)、スターターモジュール

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0modelVersion>

    <groupId>com.akieay.startgroupId>
    <artifactId>akieay-spring-boot-startartifactId>
    <version>1.0-SNAPSHOTversion>

    <dependencies>
        <dependency>
            <groupId>com.akieay.startergroupId>
            <artifactId>akieay-spring-boot-starter-autoconfigurerartifactId>
            <version>0.0.1-SNAPSHOTversion>
        dependency>
    dependencies>

project>
2)自動設定モジュール

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0modelVersion>
    <parent>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-parentartifactId>
        <version>2.3.1.RELEASEversion>
        <relativePath/> 
    parent>

    <groupId>com.akieay.startergroupId>
    <artifactId>akieay-spring-boot-starter-autoconfigurerartifactId>
    <version>0.0.1-SNAPSHOTversion>
    <name>akieay-spring-boot-starter-autoconfigurername>
    <description>Demo project for Spring Bootdescription>

    <properties>
        <java.version>1.8java.version>
    properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starterartifactId>
        dependency>
    dependencies>

project>

package com.akieay.starter;

import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * @author akieay
 */
@ConfigurationProperties(prefix = "akieay.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;
    }
}
package com.akieay.starter;

public class HelloService {
     

    HelloProperties helloProperties;

    public HelloProperties getHelloProperties() {
     
        return helloProperties;
    }

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

    public String sayHellAtguigu(String name){
     
        return helloProperties.getPrefix()+"-" +name + helloProperties.getSuffix();
    }
}
package com.akieay.starter;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

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

    @Autowired
    HelloProperties helloProperties;

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

resouresでMETA-INF/spring.factoresを追加します.
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.akieay.starter.HelloServiceAutoConfiguration
デモバッグ:https://download.csdn.net/download/qq_39668819/12570915