什么是SpringBoot
Spring Boot是由Pivotal团队提供的全新框架,其中“Boot”的意思就是“引导”,Spring Boot 并不是对 Spring 功能上的增强,而是提供了一种快速开发 Spring应用的方式。
Spring Boot 特点
- 嵌入的 Tomcat,无需部署 WAR 文件
Spring Boot 使用嵌入式的 Servlet 容器(例如 Tomcat、Jetty 或者 Undertow 等),应用无需打成 WAR 包 。
- 简化Maven配置
Spring Boot 提供了一系列的“starter”来简化 Maven 配置。
- 简化XML(自动配置)
Spring Boot 提供了大量的自动配置类,开发人员不需要任何 xml 配置即可实现 Spring 的所有配置
构建 Spring Boot 项目
maven构建SpringBoot项目
创建maven工程,不要使用骨架
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>
<!-- 继承springboot父工程-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.by</groupId>
<artifactId>SpringBoot_Junit</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<!-- 项目源码及编译输出的编码 -->
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- 添加启动器-->
<dependencies>
<!-- springboot的web启动器-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- tomcat启动器依赖范围-->
<!-- provided范围:运行和测试时不去除tomcat,打包时去除tomcat-->
<scope>provided</scope>
</dependency>
</dependencies>
</project>
创建启动类
@SpringBootApplication//表示当前类是一个SpringBoot启动类
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
文章来源地址https://www.toymoban.com/news/detail-806225.html文章来源:https://www.toymoban.com/news/detail-806225.html
到了这里,关于Spring Boot是什么-特点介绍的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!