欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SpringBoot学习笔记一:使用IntellijIDE快速创建一个SpringBoot工程

程序员文章站 2022-06-12 15:42:33
...

一、SpringBoot概述

1.SpringBoot的核心作用

SpringBoot官网对其做出的概述为:Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”. 通俗来讲,SpringBoot的核心作用就是用来简化Spring应用的初始搭建以及开发过程。

2.SpringBoot的特点

  1. 本质就是创建独立的Spring应用程序
  2. 内嵌的Tomcat,可直接对web项目打jar包运行,无需部署war包
  3. 简化maven配置,可以通过在pom文件中引入一个启动类而一次性引入所有相关依赖包。
  4. 自动配置Spring,SpringBoot对常用组件已经做好了封装,只需要对相关配置进行修改就可通过注解直接使用。即约定大于配置。

3.使用IntellijIDE快速搭建SpringBoot工程

SpringBoot学习笔记一:使用IntellijIDE快速创建一个SpringBoot工程
SpringBoot学习笔记一:使用IntellijIDE快速创建一个SpringBoot工程SpringBoot学习笔记一:使用IntellijIDE快速创建一个SpringBoot工程项目创建完成后,打开pom.xml文件。可以看到初始化构建器已经自动为我们添加了父工程和相关启动器的依赖。并且自动生成了Springboot的主程序类。需要注意的是:保证网络环境畅通的前提下才可使用SpringBoot初始化构建器。

此处附上按照上述步骤构建的maven项目pom.xml中的关键内容:

   <!-- 打包方式-->
    <packaging>jar</packaging>

    <!-- 父工程    -->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.2.RELEASE</version>
    </parent>

    <dependencies>
        <!--  web启动器依赖  -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>

    <!--  maven打包插件  -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>