zoukankan      html  css  js  c++  java
  • Spring中EmptyResultDataAccessException异常产生的原理及处理方法

    Spring中EmptyResultDataAccessException异常产生的原理及处理方法

    Spring中使用JdbcTemplate的queryForObject方法,当查不到数据时会抛出如下异常:

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

    使用Debug进行调试时,发现是在DataAccessUtils的requiredSingleResult()方法中抛出的异常。源码如下:

    public static <T> T requiredSingleResult(Collection<T> results) throws IncorrectResultSizeDataAccessException {
    	if (CollectionUtils.isEmpty(results)) {
    	    throw new EmptyResultDataAccessException(1);
    	} else if (results.size() > 1) {
    	    throw new IncorrectResultSizeDataAccessException(1, results.size());
    	} else {
    	    return results.iterator().next();
    	}
    }
    

    可以看出,当results为空时,就会抛出EmptyResultDataAccessException异常,Spring这样做的目的是为了防止程序员不对空值进行判断,保证了程序的健壮性。另外,当results的size大于1时,还会当results的size大于1时,还会抛出IncorrectResultSizeDataAccessException异常,以保证返回的记录只有一条。如果我们想查询结果为空时,返回null而不是抛出异常,该怎么办呢?很简单,只需要在捕获EmptyResultDataAccessException,然后返回null,代码如下:

    Object object = null;
    try {
        object = jdbcTemplate.queryForObject();
    } catch (EmptyResultDataAccessException e) {
        return null;
    }
    return object;
    
  • 相关阅读:
    一次有益的敏捷XP失败
    web拖动Drag&Drop原理
    一次有益的敏捷尝试
    一次有益的敏捷XP失败
    异地分布式敏捷软件开发探讨分析
    web拖动Drag&Drop原理
    XP中一些基本概念的简介
    XP中的重要惯例和规则
    异地分布式敏捷软件开发探讨分析
    PySide教程:第一个PySide应用
  • 原文地址:https://www.cnblogs.com/senlinyang/p/10362137.html
Copyright © 2011-2022 走看看