1、使用国内地址创建SpringBoot项目

国内地址:https://start.springboot.io/

创建一个基于SpringBoot的web项目_Java

2、项目结构

创建一个基于SpringBoot的web项目_css_02

创建一个基于SpringBoot的web项目_Java_03

1:Java目录下放Java相关文件 2:static目录下放.css .html .js 等文件,包括图片之类的 3:templates目录下放模板文件 4:放SpringBoot主要配置文件

3、创建基于SpringBoot的web案例

在上面基础之上,进行下面步骤1、创建一个新的类

创建一个基于SpringBoot的web项目_css_04

package com.cqjtu.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller // 添加Controller
public class SpringHelloWorld
{
    @RequestMapping("/hello") // 
    @ResponseBody //
    public String helloSpringBoot()
    {
        return "欢迎使用SpringBoot";
    }
}

2、运行

创建一个基于SpringBoot的web项目_Java_05

控制台出现这些说明运行成功,可以从地址:http://localhost:8080/hello访问web案例

创建一个基于SpringBoot的web项目_spring_06

创建一个基于SpringBoot的web项目_spring_07