共计 6018 个字符,预计需要花费 16 分钟才能阅读完成。
一、Spring Boot 简介
J2EE 的开发略显轻便,配置繁多、部署流程简单、第三方技术集成难度大,都很大水平上升高了开发效率。SpringBoot 应运而生,SpringBoot 简化了 Spring 利用开发,整合了 Spring 技术栈,去繁从简,just run 就能创立一个独立的、产品级别的利用,为 J2EE 开发提供了一站式解决方案。
- 疾速创立独立运行的 Spring 我的项目以及与支流框架集成
- 应用嵌入式的 Servlet 容器,利用无需打成 WAR 包
- starters 主动依赖与版本控制
- 大量的主动配置,简化开发,也可批改默认值
- 无需配置 XML,无代码生成,开箱即用
- 准生产环境的运行时利用监控
- 与云计算的人造集成
二、入门案例:HelloWorld
一个性能:浏览器发送 hello 申请,服务器承受申请并解决,响应 Hello World 字符串。
2.1 创立 maven 工程
2.2 引入 starter
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.3.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
2.3 编写主程序
/**
* @SpringBootApplication 标注主程序类,阐明这是一个 Spring Boot 利用
*/
@SpringBootApplication
public class HelloWorldApplication {public static void main(String[] args) {
// 启动 Spring 利用
SpringApplication.run(HelloWorldApplication.class,args);
}
}
2.4 编写 Controller
@Controller
public class HelloController {
@ResponseBody
@RequestMapping("/hello")
public String hello(){return "Hello World!";}
}
2.5 运行主程序
关上本地 Terminal:
C:\WorkSpace\IdeaProjects\springboot-learn>curl http://localhost:8080/hello
Hello World!
关上 Google,拜访 http://localhost:8080/hello
2.6 简化部署
<!-- 这个插件,能够将利用打包成一个可执行的 jar 包 -->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
将这个利用打成 jar 包,间接应用 java -jar
的命令进行执行。
C:\WorkSpace\IdeaProjects\springboot-learn>cd springboot-helloworld (切换到 pom.xml 所在目录)
C:\WorkSpace\IdeaProjects\springboot-learn\springboot-helloworld>mvn clean package -Dmaven.test.skip
[INFO] Scanning for projects...
[INFO]
[INFO] -----------------------< com.kai:springboot-helloworld >-----------------------
[INFO] Building springboot-helloworld 0.0.1-SNAPSHOT
[INFO] --------------------------------[jar]---------------------------------
---------------------------------snip-----------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 11.092 s
[INFO] Finished at: 2020-10-16T10:37:55+08:00
[INFO] ------------------------------------------------------------------------
C:\WorkSpace\IdeaProjects\springboot-learn\springboot-helloworld>cd target
C:\WorkSpace\IdeaProjects\springboot-learn\springboot-helloworld\target>dir
驱动器 D 中的卷是 Data
卷的序列号是 B8A9-CEA2
C:\WorkSpace\IdeaProjects\springboot-learn\springboot-helloworld\target 目录
2020/10/16 10:37 <DIR> .
2020/10/16 10:37 <DIR> ..
2020/10/16 10:37 <DIR> classes
2020/10/16 10:37 <DIR> generated-sources
2020/10/16 10:37 <DIR> maven-archiver
2020/10/16 10:37 <DIR> maven-status
2020/10/16 10:37 16,519,536 springboot-helloworld-1.0-SNAPSHOT.jar
2020/10/16 10:37 3,081 springboot-helloworld-1.0-SNAPSHOT.jar.original
2 个文件 16,522,617 字节
6 个目录 34,072,743,936 可用字节
C:\WorkSpace\IdeaProjects\springboot-learn\springboot-helloworld\target>java -jar springboot-helloworld-0.0.1-SNAPSHOT.jar
关上 Google,拜访 http://localhost:8080/hello
三、Hello World 案例剖析
3.1 POM 文件
(1)父我的项目
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.3.RELEASE</version>
</parent>
它的父我的项目是: 真正治理 Spring Boot 利用外面的所有依赖版本
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.3.3.RELEASE</version>
<relativePath>../../spring-boot-dependencies</relativePath>
</parent>
Spring Boot 的版本仲裁核心,所以再在 dependencies 外面治理的依赖不须要写版本。
(2)场景启动器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
spring-boot-starter-==web==
spring-boot-starter:spring-boot 场景启动器,帮咱们导入了 web 模块失常运行所依赖的组件。
Spring Boot 将所有的性能场景都抽取进去,做成一个个的 starter(启动器),只须要在我的项目外面引入这些 starter 相干场景的所有依赖都会导入进来,要用什么性能就导入什么场景的启动器。
3.2 主程序类
/**
* @SpringBootApplication 标注主程序类,阐明这是一个 Spring Boot 利用
*/
@SpringBootApplication
public class HelloWorldApplication {public static void main(String[] args) {
// 启动 Spring 利用
SpringApplication.run(HelloWorldApplication.class,args);
}
}
@SpringBootApplication 标注在某个类上阐明这个类是 SpringBoot 的主配置类,SpringBoot 就应该运行这个类的 main 办法来启动 SpringBoot 利用。
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(
excludeFilters = {@Filter(
type = FilterType.CUSTOM,
classes = {TypeExcludeFilter.class}
), @Filter(
type = FilterType.CUSTOM,
classes = {AutoConfigurationExcludeFilter.class}
)}
)
public @interface SpringBootApplication {
(1) @SpringBootConfiguration
@SpringBootConfiguration标注在某个类上,示意这是一个 Spring Boot 的主配置类,SpringBoot 启动这个类的 main 办法启动利用。
@Configuration
public @interface SpringBootConfiguration {
- @Configuration:用于指定以后类是一个 Spring 配置类,当创立容器时会从该类上加载注解。
@Component
public @interface Configuration {
- @Component 标注一个类为 Spring 容器的 Bean,(把一般 pojo 实例化到 Spring 容器中,相当于配置文件中的
<bean id=""class=""/>
)
(2) @EnableAutoConfiguration
开启主动配置性能
@AutoConfigurationPackage
@Import({AutoConfigurationImportSelector.class})
public @interface EnableAutoConfiguration {
@AutoConfigurationPackage:主动配置包
@Import({Registrar.class})
public @interface AutoConfigurationPackage {
- @Import({Registrar.class})
- Spring 的底层注解 @Import,给容器中导入一个组件,导入的组件由 Registrar.class 指定,== 将主配置类(@SpringBootApplication 标注的类)的所在包及上面所在子包外面的所有组件扫描到 Spring 容器。==
@Import({AutoConfigurationImportSelector.class})
AutoConfigurationImportSelector:导入组件的选择器,将所有须要导入的组件以全类名的形式返回,这些组件就会被增加到容器中。会给容器中导入十分多的主动配置类(xxxAutoConfiguration),就是给容器中导入这个场景须要的所有组件,并配置好这些组件。
查看源码:
查看 spring.factories:
# Auto Configure
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,\
org.springframework.boot.autoconfigure.aop.AopAutoConfiguration,\
org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration,\
\--- snip ---\
\--- snip ---\
\--- snip ---\
org.springframework.boot.autoconfigure.websocket.servlet.WebSocketMessagingAutoConfiguration,\
org.springframework.boot.autoconfigure.webservices.WebServicesAutoConfiguration,\
org.springframework.boot.autoconfigure.webservices.client.WebServiceTemplateAutoConfiguration
可见,==Spring Boot 在启动的时候从类门路下的 META-INF/spring.factories 中获取 EnableAutoConfiguration 指定的值,将这些值作为主动配置类导入到容器中,主动配置类就失效,帮咱们进行主动配置工作 ==。
J2EE 的整体整合解决方案和主动配置都在 spring-boot-autoconfigure-2.3.3.RELEASE.jar
中。