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

2014-11-24 08:54:16 · 作者: · 浏览: 0

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

[java]
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;
}


作者:wangbaoyin