新建一个Springboot项目,使用IDEA开发。以下是新建一个Springboot项目的步骤。
2.
3.
4.
5.
6.编写HelloController类作为访问入口
package com.example.springbootdemo;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping("/hello")
public String HELLO(){
return("hello springboot");
}
}
7.