一、Springboot 核心
1.自动配置:针对很多应用程序的常见功能,SpringBoot自动提供相关的配置
2.起步依赖:告诉springBoot需要什么功能,他就能引入什么功能的库
3.命令行界面:是springBoot的可选特性,让你只需要写代码就能完成完整的应用程序,无需自己再进行项目构建
4.Actuator:能够深入运行中的springboot特性
二、编写pom.xml配置文档
<?xml version="1.0" encoding="UTF-8"?>
<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.0</modelVersion>
<groupId>com.baosight.xin</groupId>
<artifactId>myTest</artifactId>
<version>1.0-SNAPSHOT</version>
<!--spring boot启动父依赖-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
&l