IDEA创建一个SpringBoot项目
1.首先点击"Create New Project",创建一个新项目.
2.点击"Spring Initializr", 选择自己的JDK版本, 点击"Next".
3.点击Next""
4.点击"Web",选择"Web",点击"Next",
5.点击"Finish",完成.
一个简单的springboot项目就创建完成了.
创建好的项目如图所示:
DemoApplication类是springboot项目的启动类,运行其中的主方法,项目就可以启动了,十分简单快捷。
直接运行DemoApplication类,是访问不到的,下面看一下怎么访问这个项目
在com.example.demo中创建controller包,代码如下所示:
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/test")
public class interfacetest {
@RequestMapping("/hello")
public String hello(){
// System.out.println("hello world");
return "hello world";
}
}
最后,在浏览器中输入"http://localhost:8080/test/hello",就可以访问了