摘要:
代码: public int findPriceByIsbn(String isbn) { String sql = "select price from book where isbn = ?"; int price = simpleJdbcTemplate.queryForInt(sql, isbn); return price; }保存,一开始不知道是什么原因,在plsql中查询的时候不报错,但是在程序中就出现这样的错误。最后才知道自己的新添加的数据为提交。org.springframework.dao.EmptyResultDataAccessException: 阅读全文