Spring Boot 動手寫一個 Start

咱們在使用SpringBoot 項目時,引入一個springboot start依賴,只須要不多的代碼,或者不用任何代碼就能直接使用默認配置,不再用那些繁瑣的配置了,感受特別神奇。咱們本身也動手寫一個start.java

1、新建一個 Start 的 Maven 項目

  1. pom 文件以下
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>2.1.0.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-autoconfigure</artifactId>
        <scope>compile</scope>
    </dependency>

    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>1.18.6</version>
        <optional>true</optional>
        <scope>provided</scope>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>

</dependencies>
複製代碼
  • spring-boot-autoconfigure springboot 自動配置的核心依賴
  • spring-boot-starter-test 測試包
  • lombok 省去 getter/setter 等簡化代碼
  1. 演示代碼

DemoService:git

public interface DemoService {

    String getMessage();

    Integer getCode();
}

複製代碼

DemoServiceImpl:github

public class DemoServiceImpl implements DemoService {

    @Override
    public String getMessage() {
        return "Hello!";
    }

    @Override
    public Integer getCode() {
        return 123;
    }
}
複製代碼

DemoAutoConfiguration:spring

@Configuration
public class DemoAutoConfiguration {

    @Bean
    @ConditionalOnMissingBean(DemoService.class)
    public DemoService demoService() {
        return new DemoServiceImpl();
    }
}
複製代碼
  • @Configuration 標註該類爲一個配置類
  • ConditionalOnMissingBean(DemoService.class) 條件註解

spingboot 的自動註解主要仍是用這些條件註解來實現的。請查看以前的文章:springboot

Spring Boot 自動配置之條件註解ide

Spring Boot 自動配置之@Enable*與@Import註解spring-boot

Spring Boot 自動配置之@EnableAutoConfigurationpost

  1. 讓springboot 識別自動自動配置的代碼

須要在resources下新建文件META-INF/spring.factories測試

org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.jiuxian.DemoAutoConfiguration
複製代碼

SpringBoot 中的註解 @EnableAutoConfiguration 在項目啓動的時候會經過 SpringFactoriesLoader.loadFactoryNames 方法獲取 spring.factories 文件下的配置類spa

  1. 測試類
  • 首先須要再包下建 Application run 的main 方法
@SpringBootApplication
public class StartDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(StartDemoApplication.class, args);
    }
}

複製代碼
  • 測試類
@RunWith(SpringRunner.class)
@SpringBootTest
public class StartDemoApplicationTests {

    @Resource
    private DemoService demoService;

    @Test
    public void test() {
        String message = demoService.getMessage();
        System.out.println(message);
        Assert.assertEquals("Hello!", message);

        Integer code = demoService.getCode();
        System.out.println(code);
        Assert.assertEquals(123, (int) code);
    }
}
複製代碼

若是沒有 StartDemoApplication 這個類則測試類啓動的時候會報 @SpringBootApplication 找不到錯誤

2、新建 springboot 項目引入剛寫的start項目

  1. service
@Service
public class TestService {

    @Resource
    private DemoService demoService;

    public void message() {
        System.out.println("code:" + demoService.getCode());
        System.out.println("message:" + demoService.getMessage());
    }
}

複製代碼
  1. 測試
@Resource
    private TestService testService;

    @Test
    public void test() {
        testService.message();
    }

複製代碼

結果:

code:123
message:Hello!
複製代碼
  1. 重寫DemoService方法
@Service
public class DemoServiceImpl implements DemoService {

    @Override
    public String getMessage() {
        return "Hello!";
    }

    @Override
    public Integer getCode() {
        return 123;
    }
}

複製代碼
  1. 測試結果
code:123
message:Hello!
複製代碼

之因此這樣的結果,是由於在start項目中的DemoService 實現類中有一個 @ConditionalOnMissingBean(DemoService.class) 的註解,若是不存在則使用默認的

3、Demo 源碼

GitHub源碼地址

相關文章
相關標籤/搜索