获取文章分类详情

获取文章分类详情_第1张图片获取文章分类详情_第2张图片

获取文章分类详情_第3张图片 CategoryController

    @GetMapping("/detail")
    public Result detail(Integer id){
        Category c = categoryService.findById(id);
        return Result.success(c);
    }

CategoryService

    //根据id查询分类信息
    Category findById(Integer id);

CategoryServiceImpl

    @Override
    public Category findById(Integer id) {
       Category c = categoryMapper.findById(id);
       return c;
    }

CategoryMapper

    //根据id查询
    @Select("select * from category where id = #{id}")
    Category findById(Integer id);

完成:

获取文章分类详情_第4张图片

你可能感兴趣的:(springboot+vue,java,前端,javascript,spring,boot)