本博文为系列文章建议大家从头阅读
创建简单的springboot入门项目,以intelliJ IDEA为例
点击新建项目然后选择如图所示
填写项目的groupid等信息
再次点击下一步,我们这里选择了一个web模块
选择项目所在路径,点击finish
在src/main/java下创建controller文件夹,并创建DemoController类:
package com.hero.study.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class DemoController {
@RequestMapping("/demo")
public String demo(){
return "hello world";
}
}
启动StudyApplication.class里面的main方法,访问http://localhost:8080/demo
看到输出hello world即可,到这里一个简单的web项目就创建完成了