SpringBoot入门-HelloWorld
SpringBoot-HelloWorld
1. 为什么要用SpringBoot
相信用过SSM框架的小伙伴都知道,在使用过程中我们必须配置大量的.xml文件来整合各个框架并对其参数进行配置,这项工作对于大型项目来说苦不堪言。
于是Pivotal 团队提供了全新的框架Spring Boot,其设计目的是用来简化新 Spring 应用的初始搭建以及开发过程。该框架采用“习惯优于配置”的方式开发,可以快速构建Spring应用。
SpringBoot 主要有以下优点:
- 快速创建独立运行的Spring项目以及与主流框架集成
- 使用嵌入式的Servlet容器,应用无需打成WAR包
- starters自动依赖与版本控制
- 大量的自动配置,简化开发,也可修改默认值
- 无需配置XML,无代码生成,开箱即用
- 准生产环境的运行时应用监控
- 与云计算的天然集成
虽然Spring Boot采用“约定大于配置”的方式来简化开发,但是对于不了解默认约定的小白来说可能并不友好
2. 创建SpringBoot应用的方式
1. 使用官网的初始化入口
在如下界面中填写相关信息
然后点击Generate即可生成一个SpringBoot项目,之后用IDEA打开即可。
2. 使用IDEA提供的Spring Initialize创建项目
以下步骤需要联网
本项目使用的环境:
工具 | 版本 |
---|---|
Maven | 3.3+ |
JDK | 1.8 |
- 创建项目时选择Spring Initializr
- 完善项目的相关信息
- 选择需要加入的依赖,本项目中我们只需要添加web
-
创建完成以后IDEA会联网帮我们创建Spring Boot项目,如下图
默认生成的Spring Boot项目
-
主程序已经生成好了,我们只需要完成我们自己的逻辑
-
resources文件夹中目录结构
- static:保存所有的静态资源; js、css、images;
- templates:保存所有的模板页面;(Spring Boot默认jar包使用嵌入式的Tomcat,默认不支持JSP页面);可以使用模板引擎(freemarker、thymeleaf);
- application.properties:Spring Boot应用的配置文件;可以修改一些默认设置;
3. 完善HelloWorld项目
1. 编写Controller
在主包下新建controller包并且在该包中新建一个class文件, 文件名为: HelloController
package com.cheerway.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class HelloController { @ResponseBody @RequestMapping("/hello") public String hello(){ return "Hello"; } }
2. 运行项目
然后我们可以打开自动生成的启动类, 运行该类可以看到控制台输出的Log
最后用浏览器访问localhost:8080/hello, 就可以看到项目运行的结果
3. 简化部署
-
Maven插件
该插件可以帮我们把springboot项目打成jar包, 达到快速部署的目的
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
-
使用mvn pakage命令进行打包
-
使用java -jar命令运行该jar包
4. HelloWorld入门程序探究
依赖
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.4.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> 这是我们项目依赖的父项目,他的父项目是 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.2.4.RELEASE</version> <relativePath>../../spring-boot-dependencies</relativePath> </parent> 这个才是管理SpringBoot全部版本的项目
启动器
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
spring-boot-starter: spring-boot场景启动器;帮我们导入了web模块正常运行所依赖的组件;
Spring Boot将所有的功能场景都抽取出来,做成一个个的starters(启动器),只需要在项目里面引入这些starter相关场景的所有依赖都会导入进来。要用什么功能就导入什么场景的启动器
主程序
package com.cheerway; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * @SpringBootApplication 说明这是一个SpringBoot应用的入口 */ @SpringBootApplication public class HelloWorldApplication { public static void main(String[] args) { SpringApplication.run(HelloWorldApplication.class, args); } }
-
@SpringBootApplication: Spring Boot应用标注在某个类上说明这个类是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} )} )
-
@SpringBootConfiguration: Spring Boot的配置类; 标注在某个类上,表示这是一个Spring Boot的配置类;
再进入该注解的源码可以看到我们的"老朋友";
@Target({ ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Configuration
-
@Configuration这是Spring中配置类的注解
@Target({ ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Component public @interface Configuration
配置类也是容器中的一个组件, 因此其源码又有@Component
-
-
-
@EnableAutoConfiguration: 自动配置注解
以前我们需要配置的东西,Spring Boot帮我们自动配置;@EnableAutoConfiguration告诉SpringBoot开启自动配置功能;这样自动配置才能生效;
@Target({ ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @AutoConfigurationPackage @Import({ AutoConfigurationImportSelector.class}) public @interface EnableAutoConfiguration
-
@AutoConfigurationPackage: 自动配置包
@Target({ ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @Import({ Registrar.class}) public @interface AutoConfigurationPackage
-
@import注解:Spring的底层注解@Import,给容器中导入一个组件
导入的组件由org.springframework.boot.autoconfigure.AutoConfigurationPackages.Registrar将主配置类(@SpringBootApplication标注的类)的所在包及下面所有子包里面的所有组件扫描到Spring容器;
-
-
@Import({AutoConfigurationImportSelector.class})
AutoConfigurationImportSelector.class将所有需要导入的组件以全类名的方式返回;这些组件就会被添加到容器中;会给容器中导入非常多的自动配置类(xxxAutoConfiguration);就是给容器中导入这个场景需要的所有组件,并配置好这些组件;有了自动配置类,免去了我们手动编写配置注入功能组件等的工作;
-
pplication标注的类)的所在包及下面所有子包里面的所有组件扫描到Spring容器;
-
@Import({AutoConfigurationImportSelector.class})
AutoConfigurationImportSelector.class将所有需要导入的组件以全类名的方式返回;这些组件就会被添加到容器中;会给容器中导入非常多的自动配置类(xxxAutoConfiguration);就是给容器中导入这个场景需要的所有组件,并配置好这些组件;有了自动配置类,免去了我们手动编写配置注入功能组件等的工作;
Spring Boot在启动的时候从类路径下的META-INF/spring.factories中获取EnableAutoConfiguration指定的值,将这些值作为自动配置类导入到容器中,自动配置类就生效,帮我们进行自动配置工作;以前我们需要自己配置的东西,自动配置类都帮我们完成了;