eclipse创建springboot项目
程序员文章站
2022-05-03 09:07:58
...
eclise help>>Eclise marketplace>>find spring tools
新建springboot项目
右键>>new>>other>>spring starter poject
next>>根据需要改内容
勾选根据需要,这里只选了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访问 上一篇: @RequestParam和@RequestBody使用详解
下一篇: python 文件操作总结