idea创建springboot的helloworld项目

Posted Pluto

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea创建springboot的helloworld项目相关的知识,希望对你有一定的参考价值。

项目环境:

  idea2019.3

  jdk1.8

  springboot2.2.4

  maven3.6.1(注意配置国内镜像)

 

1.new project

 

2.添加依赖

 

3.目录结构

 

4.创建controller包并创建HelloController类,编写类内容

@Controller
public class HelloController {
    @RequestMapping("/")
    public String hello(){
        return "index";
    }
}  

 

5. 在thymeleaf下创建index.html

 

6.运行程序,浏览器访问localhost:8080

 

7.完成!

 

以上是关于idea创建springboot的helloworld项目的主要内容,如果未能解决你的问题,请参考以下文章

idea无法创建springboot项目的解决方案

从零开始-使用IDEA创建SpringBoot项目

idea 创建springboot工程

解决IDEA无法识别SpringBoot项目

SpringBoot项目的创建:通过idea的Spring Initializr来创建(需联网以下载SpringBoot相关的模板)

idea创建springboot的helloworld项目