SpringBoot入门,新建SpringBoot项目
Posted timesay
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot入门,新建SpringBoot项目相关的知识,希望对你有一定的参考价值。
一、在Spring Initializr中创建初始化项目
二、通过maven导入Idea中(解压后的项目)
解压文件
黄色的为项目需要的真正的代码 , 蓝色git , 红色是maven其中有第三方插件可以改为Gradle. 只留黄色的就可。
选择Import project from external model 一直next到finsh.
三、写个小rest例子
@RestController public class HelloController { //@GetMapping("/hello") @RequestMapping(value = "/hello" , method = RequestMethod.GET) public String hello(){ return "Hollo World"; } }
运行项目访问 http://localhost:8080/hello
以上是关于SpringBoot入门,新建SpringBoot项目的主要内容,如果未能解决你的问题,请参考以下文章