这里是用是Idea 2014.01的版本

选择在File->New->Project...

使用Idea创建Springboot项目_根目录

填好新建项目的信息,点击Next

使用Idea创建Springboot项目_根目录_02

接下来,选择你要使用的插件,最后点击Create开始创建。

使用Idea创建Springboot项目_根目录_03

最后生成的项目如下图:

使用Idea创建Springboot项目_spring_04

增加IndexController,作为根目录的显示:

使用Idea创建Springboot项目_根目录_05

package com.eclink.iot.rfidclient.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class IndexController {

    @GetMapping
    public String index() {
        return "index";
    }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.

在templates目录下,增加html:

使用Idea创建Springboot项目_spring_06

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>RFID管理</title>
</head>
<body>
    RFID管理
</body>
</html>
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.

运行Application:

使用Idea创建Springboot项目_spring_07

运行成功后,就可以在浏览器看到页面的显示了。

使用Idea创建Springboot项目_html_08