无感五 2019-02-21 16:22 采纳率: 50%
浏览 443
已采纳

代码可以执行,但是就是会报下面这个错误,请问是为什么呢

public interface ContentCatService

//删除
    public void delete(Integer id) throws Exception;

public class ContentCatServiceImpl implements ContentCatService

//删除
    public void delete(Integer id) throws Exception {
        //1.基于id进行子元素查询
        int count = contentCatMapper.getChildCount(id);
        if(count>0) throw new Exception("请先删除子菜单");
        //2.删除菜单元素
        int rows= contentCatMapper.deleteObject(id);
        if(rows==0) throw new Exception("此菜单可能已经不存在");
        //3.删除角色,菜单关系数据
        contentMapper.deleteObjectsByMenuId(id);
    }

public class ContentCatController

//删除
    @RequestMapping(value = "/delete", method = RequestMethod.GET)
    private SysResult delete(Integer id){
        try {
            contentCatService.delete(id);
            return SysResult.ok();
        }catch (Exception e){
            e.printStackTrace();
            return SysResult.build(201,"删除失败");
        }
    }

public interface ContentCatMapper extends BaseMapper

   @Select("select count(*) from mt_content_category where parent_id=#{id}")
    int getChildCount(Integer id);

    @Select("delete from mt_content_category where id=#{id}")
    int deleteObject(Integer id);

public interface ContentMapper extends BaseMapper

 @Select("delete from mt_content where category_id=#{id}")
    int deleteObjectsByMenuId(Integer categoryId);

然后执行结果成功,返回参数失败,然后报异常了

图片说明

有大佬可以帮忙看看吗

展开全部

  • 写回答

4条回答 默认 最新

  • Lei_Da_Gou 2019-02-22 01:35
    关注
    @Select("delete from mt_content where category_id=#{id}")
        int deleteObjectsByMenuId(Integer categoryId);
    

    改为

    @Delete("delete from mt_content where category_id=#{id}")
        int deleteObjectsByMenuId(Integer categoryId);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 python 下载群辉文件
  • ¥50 代码还没怎么运行但是需要代码功能调用数据
  • ¥15 vue请求不到数据,返回状态200,数据为html
  • ¥15 访问url时不会自动调用其 Servlet的doGet()
  • ¥15 用白鹭引擎开发棋牌游戏的前端为什么这么难找
  • ¥35 哪位专业人士知道这是什么原件吗?哪里可以买到?
  • ¥15 关于#c##的问题:treenode反序列化后获取不到上一节点和下一节点,Fullpath和Handle报错
  • ¥15 一部手机能否同时用不同的app进入不同的直播间?
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部