Idea使用maven创建springboot项目

前言:
安装IDEA、配置好JDK、配置好Maven。
1.
Idea使用maven创建springboot项目_第1张图片
2.
Idea使用maven创建springboot项目_第2张图片

Idea使用maven创建springboot项目_第3张图片
4.
项目结构
Idea使用maven创建springboot项目_第4张图片
5.
(1)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>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.1</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <groupId>com.chen.test</groupId>
    <artifactId>springboot_03</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>springboot03</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <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>
        </dependency>
    </dependencies>

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

(2)创建包路径
Idea使用maven创建springboot项目_第5张图片
(3)
在com.chen.test包下创建启动类

package com.chen.test;

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

import javax.swing.*;

@SpringBootApplication
public class Springboot03Application {
     
    public static void main(String[] args) {
     
        SpringApplication.run(Springboot03Application.class,args);
    }
}

(4)
创建配置文件
Idea使用maven创建springboot项目_第6张图片
6.
测试
Idea使用maven创建springboot项目_第7张图片
Idea使用maven创建springboot项目_第8张图片

你可能感兴趣的:(微服务系列,java,spring,boot,后端)