📜  Spring Boot应用程序

📅  最后修改于: 2021-01-11 04:57:17             🧑  作者: Mango

创建一个Spring Boot项目

以下是创建简单的Spring Boot项目的步骤。

步骤1:打开Spring initializr https://start.spring.io

步骤2:提供群组工件名称。我们提供了组名com.javatpoint和Artifact spring-boot-example

第3步:现在,单击“生成”按钮。

当我们单击Generate按钮时,它开始将项目打包为.rar文件并下载该项目。

步骤4:解压缩RAR文件。

步骤5:导入文件夹。

文件->导入->现有Maven项目->下一步->浏览->选择项目->完成

导入项目需要一些时间。成功导入项目后,我们可以在Package Explorer中看到项目目录。下图显示了项目目录:

SpringBootExampleApplication.java

package com.javatpoint.springbootexample;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringBootExampleApplication 
{
public static void main(String[] args) 
{
SpringApplication.run(SpringBootExampleApplication.class, args);
}
}

pom.xml



4.0.0

org.springframework.boot
spring-boot-starter-parent
2.2.2.BUILD-SNAPSHOT
 

com.javatpoint
spring-boot-example
0.0.1-SNAPSHOT
spring-boot-example
Demo project for Spring Boot

1.8



org.springframework.boot
spring-boot-starter


org.springframework.boot
spring-boot-starter-test
test


org.junit.vintage
junit-vintage-engine







org.springframework.boot
spring-boot-maven-plugin





spring-milestones
Spring Milestones
https://repo.spring.io/milestone


spring-snapshots
Spring Snapshots
https://repo.spring.io/snapshot

true





spring-milestones
Spring Milestones
https://repo.spring.io/milestone


spring-snapshots
Spring Snapshots
https://repo.spring.io/snapshot

true




步骤6:运行SpringBootExampleApplication.java文件。

右键单击文件->运行方式-> Java应用程序

下图显示了应用程序成功运行。