获取文章分类详情功能
总说
过程参考黑马程序员SpringBoot3+Vue3全套视频教程,springboot+vue企业级全栈开发从基础、实战到面试一套通关_哔哩哔哩_bilibili
目录
总说
一、功能实现
1.1 Controller层
1.2 Service层
1.3 Impl层
1.4 Mapper层
1.5 测试接口
一、功能实现
写一个根据类别的唯一id 查找 改类别的所有信息的接口
1.1 Controller层
在CategoryController中
添加代码如下:
//获取分类详情
@GetMapping("/detail")
public Result<Category> detail(Integer id) { //获取id
Category category = categoryService.findById(id); //调用service中的findById方法
return Result.success(category);
}
1.2 Service层
在CategoryService中
添加代码如下:
//根据类别id查询
Category findById(Integer id);
1.3 Impl层
在CategoryServiceImpl中
添加代码如下:
//根据分类id查询
@Override
public Category findById(Integer id) {
return categoryMapper.findById(id);
}
1.4 Mapper层
在CategoryMapper中
添加代码如下:
//根据分类id查询
@Select("select * from category where id = #{id}")
Category findById(Integer id);
1.5 测试接口
新建一个GET方法,如下图: