lichengbei
2019-12-21
登录官网https://start.spring.io/,填写基本参数,下载自动生成的项目文件
解压下载好的项目文件,并用idea打开,配置好maven,写一个controller,运行xxxApplication即可
WebController.java的内容如下:
package com.forest.fox.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; @Controller @ResponseBody public class WebController { /** * 测试:http://127.0.0.1:8080/hello-world * * @return 测试数据 */ @RequestMapping(value = "/hello-world", method = RequestMethod.GET) public String helloWorld() { return "Hello World!"; } }
使用浏览器测试:
到此,一个最简单的springboot项目已经搭建完成了。
原文地址:https://www.cnblogs.com/lichengbei/p/12079218.html
时间: 2024-11-08 12:40:00