有许多小伙伴对后台开发感兴趣,Springboot框架可是后台开发的好帮手,所以我们决定搞一个Springboot学习专辑,分享Springboot学习经验,一起学习一起进步~ 文章虽然有点长,但干货满满,相信对你有所帮助!
01
Springboot介绍
Springboot简介
Springboot是在Sping框架基础上开发的。Spring是Java企业版(Java Enterprise Edition,JEE,也称J2EE)的轻量级代替品。无需开发重量级的Enterprise JavaBean(EJB),Spring为企业级Java开发提供了一种相对简单的方法,通过依赖注入和面向切面编程,用简单的Java对象(Plain Old Java Object,POJO)实现了EJB的功能。但虽然Spring的组件代码是轻量级的,但它的配置却是重量级的,在思考Spring特性配置和解决业务问题之间需要进行思维切换,浪费了很多时间,而且项目的依赖管理也是一件耗时耗力的事情。而SpringBoot对上述Spring的缺点进行的改善和优化,基于约定优于配置的思想,无需XML配置,也可以修改默认值来满足特定的需求,从而大大提高了开发的效率,一定程度上缩短了项目周期。
Springboot核心功能
起步依赖:起步依赖本质上是一个Maven项目对象模型(Project Object Model,POM),定义了对其他库的传递依赖,这些东西加在一起即支持某项功能。简单的说,起步依赖就是将具备某种功能的坐标打包到一起,并提供一些默认的功能。
自动配置:Spring Boot的自动配置是一个运行时(更准确地说,是应用程序启动时)的过程,考虑了众多因素,才决定Spring配置应该用哪个,不该用哪个。该过程是Spring自动完成的。
02
Springboot代码实现
NO1. 创建Maven工程
方法一:使用Spring Initializr页面创建
第一步:
访问Spring Initializr:https://start.spring.io/
上图选项说明:
Project:使用什么构建工具,Maven还是Gradle;
Language:使用什么编程语言,Java、Kotlin还是Groovy;
Spring Boot:选用的Spring Boot版本;这里使用当前最新的2.1.3版本。
Project Metadata:项目的元数据;其实就是Maven项目的基本元素,点开More options可以看到更多设置,根据自己组织的情况输入相关数据,如图:
Dependencies:选择要加入的Spring Boot组件;本文将实现一个Http接口,所以选择Web组件(只需要输入Web,页面会自动联想显示匹配的可选组件):
点击“+”后就添加了组件,如图
第二步:点击”Generate Project“按钮生成项目;此时浏览器会下载一个与上面Artifact名称一样的压缩包。
第三步:解压项目包,并用编译器以Maven项目导入,以IntelliJ IDEA为例:
菜单中选择:File –> New –> Project from Existing Sources…
选择解压后的项目文件夹,点击OK
点击:Import project from external model,并选择Maven,点击Next到底为止。
若你的环境有多个版本的JDK,注意到选择Java SDK的时候请选择Java 8(具体根据你在第一步中选择的Java版本为准)
方法二:使用idea工具创建一个maven工程
NO2. 添加SpringBoot的起步依赖
SpringBoot要求,项目要继承SpringBoot的起步依赖spring-boot-starter-parent
org.springframework.bootspring-boot-starter-parent2.0.1.RELEASE
SpringBoot要集成SpringMVC进行Controller的开发,所以项目要导入web的启动依赖
<html>
<head></head>
<body>
<dependencies>
<dependency>
<groupid>
org.springframework.boot
</groupid>
<artifactid>
spring-boot-starter-web
</artifactid>
</dependency>
</dependencies>
</body>
</html>
NO3. 编写SpringBoot引导类
要通过SpringBoot提供的引导类起步SpringBoot才可以进行访问
<html>
<head></head>
<body>
packagecom.itheima;importorg.springframework.boot.SpringApplication;importorg.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublicclassMySpringBootApplication{publicstaticvoidmain(String[] args){ SpringApplication.run(MySpringBootApplication.class); }}
</body>
</html>
NO4. 编写Controller
在引导类MySpringBootApplication同级包或子级包中创建QuickStartController
<html>
<head></head>
<body>
package com.itheima.controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody;@Controllerpublic class QuickStartController { @RequestMapping("/quick") @ResponseBody public String quick(){ return "springboot 访问成功!"; }}
</body>
</html>
NO5. 测试
执行SpringBoot起步类的主方法,控制台打印日志如下
. ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v2.0.1.RELEASE)2018-05-08 14:29:59.714 INFO 5672 --<html>
<head></head>
<body>
- [ main] com.itheima.MySpringBootApplication : Starting MySpringBootApplication on DESKTOP-RRUNFUH with PID 5672 (C:\Users\muzimoo\IdeaProjects\IdeaTest\springboot_quick\target\classes started by muzimoo in C:\Users\muzimoo\IdeaProjects\IdeaTest)... ... ...o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]2018-05-08 14:30:03.126 INFO 5672 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup2018-05-08 14:30:03.196 INFO 5672 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''2018-05-08 14:30:03.206 INFO 5672 --- [ main] com.itheima.MySpringBootApplication : Started MySpringBootApplication in 4.252 seconds (JVM running for 5.583)
</body>
</html>
通过日志发现,Tomcat started on port(s): 8080 (http) with context path ''
tomcat已经起步,端口监听8080,web应用的虚拟工程名称为空
打开浏览器访问url地址为:http://localhost:8080/quick
03
Springboot快速入门解析
NO1. SpringBoot代码解析
@SpringBootApplication:标注SpringBoot的启动类,该注解具备多种功能。
SpringApplication.run(MySpringBootApplication.class) 代表运行SpringBoot的启动类,参数为SpringBoot启动类的字节码对象。
NO2. SpringBoot工程热部署
我们在开发中反复修改类、页面等资源,每次修改后都是需要重新启动才生效,这样每次启动都很麻烦,浪费了大量的时间,我们可以在修改代码后不重启就能生效,在 pom.xml 中添加如下配置就可以实现这样的功能,我们称之为热部署。
<!--热部署配置-->org.springframework.bootspring-boot-devtools
注意:IDEA进行SpringBoot热部署失败原因
出现这种情况,并不是热部署配置问题,其根本原因是因为Intellij IEDA默认情况下不会自动编译,需要对IDEA进行自动编译的设置,如下:
然后 Shift+Ctrl+Alt+/,选择Registry
NO3. 使用idea快速创建包括起步依赖的SpringBoot项目
通过idea快速创建的SpringBoot项目的pom.xml中已经导入了我们选择的web的起步依赖的坐标
<!--?xml version="1.0" encoding="UTF-8"?-->
<html>
<head></head>
<body>
4.0.0com.itheimaspringboot_quick20.0.1-SNAPSHOTjarspringboot_quick2Demo project for Spring Bootorg.springframework.bootspring-boot-starter-parent2.0.1.RELEASE
<!-- lookup parent from repository -->UTF-8UTF-89org.springframework.bootspring-boot-starter-weborg.springframework.bootspring-boot-starter-testtestorg.springframework.bootspring-boot-maven-plugin
</body>
</html>
文章虽然有点长,但其实都是Springboot的基础内容,希望你能有所收获。学习从来不是一件舒服容易的事情,希望我们都能坚持!一起加油~