溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

詳解SpringBoot工程的三種搭建方式

發(fā)布時間:2020-09-17 15:21:17 來源:腳本之家 閱讀:175 作者:java菲 欄目:編程語言

SpringBoot的主要目的是簡化配置文件,通過少量配置即可運(yùn)行Java程序,其強(qiáng)大的自動配置功能幫助開發(fā)者輕松實(shí)現(xiàn)配置裝配,通過引入SpringBoot的 starter 就能實(shí)現(xiàn)想要的功能,不需要額外的配置。

目前SpringBoot工程有三種搭建方式:

  • 通過Spring Initializr創(chuàng)建
  • 通過IDEA創(chuàng)建工程
  • 手動創(chuàng)建工程

 官方生成工具

Spring團(tuán)隊提供一個非常方便的網(wǎng)頁用于生成SpringBoot工程,打開瀏覽器進(jìn)入Spring Initializr:

詳解SpringBoot工程的三種搭建方式

工程生成參數(shù)列表:

  • Project: 工程類型(支持Maven和Gradle構(gòu)建工具)
  • Language:工程主要語言根據(jù)需要可選擇Java、Kotlin、Groovy
  • SpringBoot:SpringBoot版本
  • ProjectMatedata:有 GroupArtifact 等配置
  • Dependencies:工程依賴

參數(shù)設(shè)置完成后點(diǎn)擊 Generate 下載工程,完成后使用 IDEA 導(dǎo)入工程,打開工程同步即可運(yùn)行。

IDEA創(chuàng)建工程

較新的 IDEA 版本都內(nèi)置創(chuàng)建SpringBoot工程插件,其創(chuàng)建原理也是使用的Spring Initializr來創(chuàng)建工程,創(chuàng)建流程下如:

  • 打開 IDEA 開發(fā)工具
  • 選擇 file -> new -> project 菜單
  • 在新的對話框中選擇 Spring Initializr
  • 點(diǎn)擊 Next 即可創(chuàng)建SpringBoot工程

詳解SpringBoot工程的三種搭建方式

最后添加 main 方法啟動應(yīng)用程序:

@SpringBootApplication
@Slf4j
public class SpringEnvApplication {

  public static void main(String[] args) {

    ConfigurableApplicationContext context = SpringApplication.run(SpringEnvApplication.class, args);
  }

}

手動創(chuàng)建SpringBoot工程

除了以上兩種方式外,還可以通過手動創(chuàng)建的方式創(chuàng)建SpringBoot工程,通過 IDEA 創(chuàng)建一個空的 Maven 工程,然后指定SpringBoot的依賴就,基本流程如下:

  • 打開 IDEA 開發(fā)工具
  • 選擇 file -> new -> project 菜單
  • 在新的對話框中選擇 Mavenn
  • 點(diǎn)擊 Next 根據(jù)提示完成項(xiàng)目創(chuàng)建

工程創(chuàng)建完成后,打開 pom.xml 文件,設(shè)置 pom.xml 的parent配置:

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.2.0.RELEASE</version>
</parent>

添加SpringBoot Maven 打包插件:

<build>
  <plugins>
    <plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
    </plugin>
  </plugins>
</build>

添加 main 方法啟動應(yīng)用程序:

@SpringBootApplication
@Slf4j
public class SpringEnvApplication {

  public static void main(String[] args) {

    ConfigurableApplicationContext context = SpringApplication.run(SpringEnvApplication.class, args);
  }

}

完整 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.0.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
  </parent>
  <groupId>com.csbaic.arch</groupId>
  <artifactId>spring-env</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>spring-env</name>

  <properties>
    <java.version>1.8</java.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter</artifactId>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>

</project>

設(shè)置parent和插件后,就可以使用SpringBoot創(chuàng)建應(yīng)用程序了。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI