SpringBoot系列—1.IDEA搭建SpringBoot框架
SpringBoot系列—2.SpringBoot拦截器篇
SpringBoot系列—3.SpringBoot Redis篇
SpringBoot系列—4.SpringBoot 整合Mybatis、MP(MyBatis-Plus)
SpringBoot系列—5.SpringBoot 整合Mybatis-Plus分页
1.打开IDEA,新建项目,选择Spring Initializr,点击Next
2.自定义包名和项目名,Type选择Maven Project,点击Next
image.png
3.选择依赖,选中Web,勾选Spring Web,点击Next
image.png
4.设置项目名称和项目保存路径,然后点击Finish
image.png
5.右键pom.xml,Maven->Reimport导入三方依赖
image.png
6.新建controller包,controller包下新建TestController
image.png
7.编写Controller测试代码
package com.example.demo.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@RequestMapping("/test")
@ResponseBody
private String test(){
return "Hello World!";
}
}
8.运行项目
9.浏览器访问控制器成功,SpringBoot项目搭建完成 image.png
网友评论