Springboot创建一个简单的demo
程序员文章站
2022-07-07 14:03:16
...
1、准备工作
1.1 开发工具win7 + eclipse + maven
2、创建springboot项目
2.1 打开链接https://start.spring.io
Option选项
2.2 eclipse导入项目包
解压.zip文件,打开eclipse–>file–>Import
3、代码编写
3.1 Controller层
目录下,创建controller包,创建TestController类
package com.example.springbootdemo.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@RequestMapping("hello")
public String test() {
return "hello world!";
}
}
4、application.properties文件
server.port=8080
5、启动application
6、浏览器Url请求
打开浏览器输入地址:localhost:8080/hello 得到页面显示“hello world!”
一个简单的springbootdemo就ok拉