Idea创建一个Springboot单模块项目

时间:2021-11-29 19:19:22

1.打开IDEA,创建新项目,选择Spring Initializr,选择SDK为你的java版本。

Idea创建一个Springboot单模块项目

Idea创建一个Springboot单模块项目

2.点击下一步,输入Artifact

Idea创建一个Springboot单模块项目

3.点击下一步,选择web

Idea创建一个Springboot单模块项目

4.finish

Idea创建一个Springboot单模块项目

5.完成后idea自动生成下列结构,框出来的可以删掉。

Idea创建一个Springboot单模块项目

idea会为每个module生成一个application

Idea创建一个Springboot单模块项目

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> <groupId>com.jackpotHan</groupId>
<artifactId>springboot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging> <name>springboot</name>
<description>Demo project for Spring Boot</description>
  <!--起步依赖,我的spring boot 版本是2.0.4--> 
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
  
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
   <!--开发web项目相关依赖--> 
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
      <!--springboot单元测试-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
   <!--maven构建-->  
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build> </project>

6.创建一个helloController

Idea创建一个Springboot单模块项目

7.运行SpringbootApplication

Idea创建一个Springboot单模块项目

Idea创建一个Springboot单模块项目

8.打开浏览器,输入 http://localhost:8080/hello

Idea创建一个Springboot单模块项目

自此,一个简单的springboot项目就完成了。