SpringBoot 介绍
小于 1 分钟
SpringBoot 目的在于简化 Java 服务的配置、部署。
SpringBoot 核心功能:
- 简化配置
- 内嵌 web 服务器
- 独立运行
java -jar xxx.jar
- 准生产的应用监控
todo 区别 ApplicationRunner
和 CommandLineRunner
(runner).run(args) // ApplicationRunner
(runner).run(args.getSourceArgs()) // CommandLineRunner
参考:
- Spring Boot 最佳实践 —— https://github.com/javastacks/spring-boot-best-practice