现在的位置: 首页 > 综合 > 正文

org.springframework.dao.EmptyResultDataAccessException: Incorrect result size: expected 1, actual 0

2018年05月14日 ⁄ 综合 ⁄ 共 226字 ⁄ 字号 评论关闭

解决办法就是捕捉这个异常然后返回null即可。


try{  
            return getJdbcTemplate().queryForMap("select s.fb,s.pb,s.tu,s.qt,s.fbc,s.pbc,s.tt,s.ft,s.lt from gbc$view_user s where s.ud = ? and ad= ?", new Object[]{ud,ad});  
        }catch (EmptyResultDataAccessException e) {  
            return null;  
        }  

抱歉!评论已关闭.