1、使用国内地址创建SpringBoot项目
国内地址:https://start.springboot.io/
2、项目结构
1:Java目录下放Java相关文件 2:static目录下放.css .html .js 等文件,包括图片之类的 3:templates目录下放模板文件 4:放SpringBoot主要配置文件
3、创建基于SpringBoot的web案例
在上面基础之上,进行下面步骤1、创建一个新的类
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、运行
控制台出现这些说明运行成功,可以从地址:http://localhost:8080/hello访问web案例
标签:web,SpringBoot,创建,springframework,Controller,org,import From: https://blog.51cto.com/u_16200950/6977013