创建springboot项目
1、使用网站https://start.spring.io/
2、IDEA内部集成上方网站创建
项目编辑
1、controller,dao,pojo,service包在Application类同级目录下创建
2、controller编写
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class helloController {
@RequestMapping("/hello")
public String hello(){
return "helloworld";
}
}