> FastBoot 基于[`SpringBoot 2.4.1`](https://spring.io/projects/spring-boot)结合开发中遇到的问题,封装拓展而来;开箱即用,按需开启,快速开发
#### 安装
```
<dependency>
<groupId>io.github.xiesixian</groupId>
<artifactId>fast-boot</artifactId>
<version>2.2.1</version>
</dependency>
```
#### 启动
```
______ __ ____ __
/ ____/___ ______/ /_/ __ )____ ____ / /_
/ /_ / __ `/ ___/ __/ __ / __ \/ __ \/ __/
/ __/ / /_/ (__ ) /_/ /_/ / /_/ / /_/ / /_
/_/ \__,_/____/\__/_____/\____/\____/\__/ Power By Spring Boot (v2.4.1.RELEASE)
[FBOOT][ INFO][08-22 19:01:11]-->[main: 929][logStarting(StartupInfoLogger.java:55)] | - Starting FastBootApplication on DELL-XPS with PID 15216 (D:\Projects\gotv\fastboot\target\classes started by XIE in D:\Projects\gotv\fastboot)
[FBOOT][ INFO][08-22 19:01:11]-->[main: 945][logStartupProfileInfo(SpringApplication.java:651)] | - No active profile set, falling back to default profiles: default
[FBOOT][ INFO][08-22 19:01:13]-->[main: 2743][getConnection(HikariDataSource.java:110)] | - HikariPool-1 - Starting...
[FBOOT][ INFO][08-22 19:01:13]-->[main: 2894][getConnection(HikariDataSource.java:123)] | - HikariPool-1 - Start completed.
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3000][init(SpringStartup.java:56)] | - Startup name: fastboot, path: d:/projects/gotv/fastboot
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3158][install(LicenseVerify.java:92)] | - license install success
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3171][verify(LicenseVerify.java:115)] | - license verify success 2020-08-17 23:54:53 - 2020-09-16 23:54:53
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3234][instantiate(StdSchedulerFactory.java:1220)] | - Using default implementation for ThreadExecutor
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3252][<init>(SchedulerSignalerImpl.java:61)] | - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3252][<init>(QuartzScheduler.java:229)] | - Quartz Scheduler v.2.3.2 created.
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3253][initialize(RAMJobStore.java:155)] | - RAMJobStore initialized.
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3254][initialize(QuartzScheduler.java:294)] | - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3255][instantiate(StdSchedulerFactory.java:1374)] | - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3256][instantiate(StdSchedulerFactory.java:1378)] | - Quartz scheduler version: 2.3.2
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3258][setJobFactory(QuartzScheduler.java:2293)] | - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@adf94532
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3286][scheduler(SpringStartup.java:98)] | - Startup Scheduler 0 job completed.
[FBOOT][ INFO][08-22 19:01:13]-->[main: 3286][setApplicationContext(SpringContextAware.java:28)] | - Startup ApplicationContext completed.
[FBOOT][ INFO][08-22 19:01:14]-->[main: 4241][start(QuartzScheduler.java:547)] | - Scheduler quartzScheduler_$_NON_CLUSTERED started.
[FBOOT][ INFO][08-22 19:01:14]-->[main: 4250][logStarted(StartupInfoLogger.java:61)] | - Started FastBootApplication in 3.7 seconds (JVM running for 4.25)
[FBOOT][ INFO][08-22 19:01:14]-->[main: 4252][main(FastBootApplication.java:25)] | - Started FastBootApplication 启动成功
```
文档更新于 2021-02-01
[](https://cloud.tencent.com/act/cps/redirect?redirect=1067&cps_key=ba448d718bf493b64ce8952601e7e18d&from=console)