关注Java后端技术全栈

回复“面试”获取全套大厂面试资料


快速构建Spring Boot基础项目的两种方式:

  • spring官方工具

  • IDEA工具

spring官方工具构建Spring Boot项目

浏览器上输入地址:https://start.spring.io/

如图所示

如何快速构建Spring Boot基础项目?_idea

我这里使用的是maven,语言选择java。packaging选择Jar,JDK版本选择自己的版本,我这里选择的JDK1.8。

最后选择一个SpringBoot版本。

右边是添加依赖

如何快速构建Spring Boot基础项目?_idea_02

这里我们选个spring web,下载到本地

如何快速构建Spring Boot基础项目?_idea_03

解压到自己的本地空间,然后使用IDEA导入,项目目录:

如何快速构建Spring Boot基础项目?_idea_04

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.3.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>

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

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

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

DemoApplication.java

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DemoApplication {

public static void main(String[] args) {
SpringApplication.run(DemoApplication.classargs);
}

}

项目其他都为空,application.properties都是空白的。

如何快速构建Spring Boot基础项目?_idea_05

为了演示,这里添加一个Controller

package com.example.demo;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {

   @GetMapping("/hello")
   public String hello(){
       return "hello world" ;
  }
}

启动DemoApplication.java中的main函数。

如何快速构建Spring Boot基础项目?_idea_06

默认端口是8080。

在浏览器上输入:http://localhost:8080/hello

如何快速构建Spring Boot基础项目?_idea_07

以上便是使用spring官方提供的工具创建Spring Boot项目的一种方式。下面来使用IDEA创建Spring Boot项目。


IDEA创建Spring Boot项目

Intellij IDEA 中的 Spring Initializr 工具

File-->new---project

如何快速构建Spring Boot基础项目?_idea_08

选择next,我们可以看到

如何快速构建Spring Boot基础项目?_idea_09

  • Group 顾名思义就是你的公司名,一般是填写com.***。

  • Artifact groupId 和 artifactId 是maven管理项目包时用作区分的字段,就像是地图上的坐标。这里填写项目名即可。

  • Type 就是构建的项目类型,意思就是你希望你的项目使用什么工具构建,可选 maven 和 gradle 一般选 maven。

  • Language 顾名思义就是你的项目用啥语言开发,可选 Java、Groovy、Kotlin

  • Packaging 就是你希望你的项目打成什么形式的包,可选 Jar、War SpringBoot 项目一般选 Jar

  • Java Version 意指项目使用的 java 版本,根据你的需要选择,我这里使用的是8。

  • Version 项目的初始版本,默认即可。

  • Name 项目名称。

  • Description 项目描述,默认即可。

  • Package 包名,填完 Group 和 Artifact 后自动生成,默认即可。

继续 next

如何快速构建Spring Boot基础项目?_idea_10

这里为了好演示,所以选择web,这里是可以选择很多的,有空自行翻阅一下,一键式搞定依赖。也称约定大于配置。

如何快速构建Spring Boot基础项目?_idea_11

next(因为前面已经有demo,所以这里取个demo1)

如何快速构建Spring Boot基础项目?_idea_12

Finish.

导入到IDEA中

如何快速构建Spring Boot基础项目?_idea_13

和前面使用spring官方工具构建的一毛一样。

然后继续把前面那个Controller搞过来

如何快速构建Spring Boot基础项目?_idea_14

启动DemoApplication

如何快速构建Spring Boot基础项目?_idea_15

浏览器上输入:http://localhost:8080/hello

如何快速构建Spring Boot基础项目?_idea_16

好了,以上便是今天分享的两周构建spring boot项目的方法。希望上面两种方式对你有所帮助。

码字不易,点个在看+分享,非常感谢!

如何快速构建Spring Boot基础项目?_idea_17