idea创建springboot工程,编写hello world

不依赖spring提供的模板,自己创建maven工程
按照官网要求:Java 8 、Maven3.5+
第一步:新建maven工程,直接下一步
idea创建springboot工程,编写hello world
根据自己的需要,填写自己的信息,然后finish
idea创建springboot工程,编写hello world

第二步:引入springboot项目需要的pom依赖(注意修改maven配置信息)
idea创建springboot工程,编写hello world
idea创建springboot工程,编写hello world
结合官网信息,需要引入

<?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>org.example</groupId>
    <artifactId>spring-boot-demo</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.5.9</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
</project>

第三步:编写程序,创建MyApplication运行类(官网示例)

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author lixl
 * @description
 * @date 2022/1/25
 */
@RestController
@EnableAutoConfiguration
public class MyApplication {
    @RequestMapping("/")
    String home() {
        return "Hello World!";
    }
	// 直接运行main方法
    public static void main(String[] args) {
        SpringApplication.run(MyApplication.class, args);
    }
}

第四步:浏览器输入地址,查看结果 http://localhost:8080
idea创建springboot工程,编写hello world
到此,创建springboot项目结束,运行正常。

上一篇:org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘‘


下一篇:Spring boot H2 数据库REST API示例