什么是SpringBoot:
Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。用我的话来理解,就是spring boot其实不是什么新的框架,它默认配置了很多框架的使用方式,就像maven整合了所有的jar包,spring boot整合了所有的框架(
就是能够帮助我们快速整合第三方框架
)。
SpringBoot特性:
- 创建独立的Spring应用程序
- 嵌入的Tomcat,无需部署WAR文件
- 简化Maven配置
- 自动配置Spring
- 提供生产就绪型功能,如外部配置
SpringBoot默认的情况下已经帮助我们整合好了SpringBootMvc
SpringBoot快速入门:
创建SpringBoot项目:
1.选择File –> New –> Project –>Spring Initialer
2.设置基本信息(可以修改Group(包名)和Artifact(项目名称)以及Version(版本)等信息。)
3.我们可以看到一个选择依赖的页面,里面提供了很多常见的依赖,选择你想要的依赖也可以不选,我们想要建立一个Web项目,必须要选择Web下面的Web
4.项目目录结构
主程序(启动类)
package com.example.javaspringboot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
//@SpringBootApplication 来标注一个主程序,说明这是一个Sping Boot项目
@SpringBootApplication
public class JavaSpringbootApplication {
public static void main(String[] args) {
//代表运行SpringBoot的启动类,参数为SpringBoot启动类的字节码对象,和main方法的参数
SpringApplication.run(JavaSpringbootApplication.class, args);
}
}
@SpringBootApplication开启了Spring的组件扫描和springboot的自动配置功能,相当于将以下三个注解组合在了一起
1、@SpringBootConfiguration:表名将此类作为配置类。
他是@Configurationb注解的派生注解,功能一样,只不过@SpringBootConfiguration是SpringBoot的注解@Configurationb是Spring的注解
2、@ComponentScan:启用注解扫描。
扫描的范围是当前主程序的同级包和子包下面的,所以项目的包和类要和主程序在同级目录下
3、@EnableAutoConfiguration:开启springboot的自动配置功能。
@RestController和@Controller区别
如果在类上添加@RestController注解,该类所以SpringMVCURL接口映射都是返回Json数据,他是有SpringBoot提供的,是@Controller和@ResponseBody注解一起组合的
@RestController
public class HelloController {
@RequestMapping("/hello")
public String Hello(){
return "helloSpringBoot";
}
}
@Controoler 控制层注解,该类所以SpringMVCURL接口映射默认都是返回页面,如果想返回Json数据@ResponseBody
@Controller
public class HelloController {
@ResponseBody
@RequestMapping("/hello")
public String Hello(){
return "helloSpringBoot";
}
}
pom.xml配置文件
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
任何一个springboot项目都会引入spring-boot-starter-parent依赖用来做项目版本管理进入spring-boot-starter-parent发现一个spring-boot-dependencies
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.5.2</version>
</parent>
这个dependencies是spring-boot-starter-parent父依赖,真正管理Spring Boot应用里面的所有依赖版本,是正真的boot版本仲裁中心,再次进入这个dependencies版本中心,可以看到许多的版本版本声明,列举如下
<properties>
<activemq.version>5.16.2</activemq.version>
<antlr2.version>2.7.7</antlr2.version>
<appengine-sdk.version>1.9.89</appengine-sdk.version>
<artemis.version>2.17.0</artemis.version>
<aspectj.version>1.9.6</aspectj.version>
<assertj.version>3.19.0</assertj.version>
<atomikos.version>4.0.6</atomikos.version>
<awaitility.version>4.0.3</awaitility.version>
<build-helper-maven-plugin.version>3.2.0</build-helper-maven-plugin.version>
<byte-buddy.version>1.10.22</byte-buddy.version>
<caffeine.version>2.9.1</caffeine.version>
<cassandra-driver.version>4.11.2</cassandra-driver.version>
<classmate.version>1.5.1</classmate.version>
<commons-codec.version>1.15</commons-codec.version>
<commons-dbcp2.version>2.8.0</commons-dbcp2.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-pool.version>1.6</commons-pool.version>
<commons-pool2.version>2.9.0</commons-pool2.version>
<couchbase-client.version>3.1.6</couchbase-client.version>
<db2-jdbc.version>11.5.5.0</db2-jdbc.version>
<dependency-management-plugin.version>1.0.11.RELEASE</dependency-management-plugin.version>
<derby.version>10.14.2.0</derby.version>
<dropwizard-metrics.version>4.1.24</dropwizard-metrics.version>
<ehcache.version>2.10.9.2</ehcache.version>
<ehcache3.version>3.9.4</ehcache3.version>
<elasticsearch.version>7.12.1</elasticsearch.version>
<embedded-mongo.version>3.0.0</embedded-mongo.version>
<flyway.version>7.7.3</flyway.version>
<freemarker.version>2.3.31</freemarker.version>
.....
</properties>
所以以后导入其他此处已经存在的依赖默认不需要写版本,比如项目需要使用mysql驱动依赖,我们直接引入依赖,不需要写版本,自动引入默认的版本
如果不想使用默认的版本,在pom文件中使用properties标明,key使用版本中心使用的key,如mysql
<properties>
<mysql.version>5.1.43</mysql.version>
</properties>
导入starter场景启动器
在pom.xml可以见到很多 spring-boot-starter-xx:spring-boot-starter(spring-boot场景启动器) xx就是某种场景如:spring-boot-starter-web这就帮我们导入了web模块正常运行所依赖的组件;
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
所以Spring Boot将所有的功能场景都抽取出来,做成一个个的starters(启动器),只需要在项目里面引入这些starter相关场景,所有依赖都会导入进来。要用什么功能就导入什么场景的启动器
SpringBoot所有支持的场景:https://docs.spring.io/springboot/docs/current/reference/html/using.html#using.build-systems.starters