博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot 动手写一个 Start
阅读量:5838 次
发布时间:2019-06-18

本文共 3536 字,大约阅读时间需要 11 分钟。

hot3.png

我们在使用SpringBoot 项目时,引入一个springboot start依赖,只需要很少的代码,或者不用任何代码就能直接使用默认配置,再也不用那些繁琐的配置了,感觉特别神奇。我们自己也动手写一个start.

一、新建一个 Start 的 Maven 项目

  1. pom 文件如下
org.springframework.boot
spring-boot-dependencies
2.1.0.RELEASE
pom
import
org.springframework.boot
spring-boot-autoconfigure
compile
org.projectlombok
lombok
1.18.6
true
provided
org.springframework.boot
spring-boot-starter-test
test
  • spring-boot-autoconfigure springboot 自动配置的核心依赖
  • spring-boot-starter-test 测试包
  • lombok 省去 getter/setter 等简化代码
  1. 演示代码

DemoService:

public interface DemoService {    String getMessage();    Integer getCode();}

DemoServiceImpl:

public class DemoServiceImpl implements DemoService {    @Override    public String getMessage() {        return "Hello!";    }    @Override    public Integer getCode() {        return 123;    }}

DemoAutoConfiguration:

@Configurationpublic class DemoAutoConfiguration {    @Bean    @ConditionalOnMissingBean(DemoService.class)    public DemoService demoService() {        return new DemoServiceImpl();    }}
  • @Configuration 标注该类为一个配置类
  • ConditionalOnMissingBean(DemoService.class) 条件注解

spingboot 的自动注解主要还是用这些条件注解来实现的。请查看之前的文章:

  1. 让springboot 识别自动自动配置的代码

需要在resources下新建文件META-INF/spring.factories

org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.jiuxian.DemoAutoConfiguration

SpringBoot 中的注解 @EnableAutoConfiguration 在项目启动的时候会通过 SpringFactoriesLoader.loadFactoryNames 方法获取 spring.factories 文件下的配置类

  1. 测试类
  • 首先需要再包下建 Application run 的main 方法
@SpringBootApplicationpublic class StartDemoApplication {    public static void main(String[] args) {        SpringApplication.run(StartDemoApplication.class, args);    }}
  • 测试类
@RunWith(SpringRunner.class)@SpringBootTestpublic 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 找不到错误

二、新建 springboot 项目引入刚写的start项目

  1. service
@Servicepublic 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:123message:Hello!
  1. 重写DemoService方法
@Servicepublic class DemoServiceImpl implements DemoService {    @Override    public String getMessage() {        return "Hello!";    }    @Override    public Integer getCode() {        return 123;    }}
  1. 测试结果
code:123message:Hello!

之所以这样的结果,是因为在start项目中的DemoService 实现类中有一个 @ConditionalOnMissingBean(DemoService.class) 的注解,如果不存在则使用默认的

三、Demo 源码

转载于:https://my.oschina.net/u/3555293/blog/3019881

你可能感兴趣的文章
[转]linux创建链接文件的两种方法
查看>>
python ipaddress模块使用
查看>>
文件权限
查看>>
busybox里的僵尸进程为何那么多
查看>>
python debug
查看>>
java 连接数据库之一个完整的函数
查看>>
mysql脚本
查看>>
OllyDBG 入门系列教学--让你瞬间成为破解高手
查看>>
Dubbo点滴(2)之集群容错
查看>>
检测不到兼容的键盘驱动程序
查看>>
listbox用法
查看>>
冲刺第九天 1.10 THU
查看>>
传值方式:ajax技术和普通传值方式
查看>>
Linux-网络连接-(VMware与CentOS)
查看>>
寻找链表相交节点
查看>>
linq 学习笔记之 Linq基本子句
查看>>
[Js]布局转换
查看>>
Hot Bath
查看>>
Java annotation 自定义注释@interface的用法
查看>>
Apache Spark 章节1
查看>>