欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Springboot创建一个简单的demo

程序员文章站 2022-07-07 14:03:16
...

1、准备工作

1.1 开发工具win7 + eclipse + maven

2、创建springboot项目

2.1 打开链接https://start.spring.io
Springboot创建一个简单的demo
Option选项
Springboot创建一个简单的demo
2.2 eclipse导入项目包
解压.zip文件,打开eclipse–>file–>Import
Springboot创建一个简单的demo
Springboot创建一个简单的demo

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

Springboot创建一个简单的demo

6、浏览器Url请求

打开浏览器输入地址:localhost:8080/hello 得到页面显示“hello world!”

Springboot创建一个简单的demo
一个简单的springbootdemo就ok拉

相关标签: springboot