spring jdbc 模板返回空结果
我有以下代码
resultList = daoResources.jdbcTemplate.query(sql, selectParams, new BeanPropertyRowMapper(resultClass));
当使用 selectParams 针对数据库运行时, SQL,得到结果。 sql的选择字段名称也与resultClass中的字段匹配。但对于上面的代码,我得到一个空的 resultList。
问题可能出在哪里?
I have the following code
resultList = daoResources.jdbcTemplate.query(sql, selectParams, new BeanPropertyRowMapper(resultClass));
SQL when run with the selectParams against database, I get result. The selecting fields name of the sql matches with the fields in the resultClass too. But for above code, I get an empty resultList.
Where could be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,调试是你的朋友。我建议您启用 jdbc 模板的调试日志,以查看发送到数据库的 sql 和绑定参数。以下来自 3.0 .x参考文档
Debugging is your friend in this scenario. I suggest you enable debug logs for jdbc template to see what sql's and bind parameters are sent to database. Below is from the 3.0.x reference doc