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

eclipse创建springboot项目

程序员文章站 2022-05-03 09:07:58
...

eclise help>>Eclise marketplace>>find spring tools

eclipse创建springboot项目

新建springboot项目

右键>>new>>other>>spring starter poject

eclipse创建springboot项目

next>>根据需要改内容

eclipse创建springboot项目

勾选根据需要,这里只选了web

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

@Controller
public class HelloWorldController {
	
	@RequestMapping("/hello")
	public @ResponseBody String StringController() {
		return "hello";
	}
}
启动main方法;浏览器localhost:8080/hello访问