我将xml作为字节数组存储在oracle数据库的clob列中.现在尝试使用jdbctemplate将结果集作为弹出批处理中的字节数组.它抛出以下异常
org.springframework.dao.InvalidDataAccessApiUsageException:StatementCallback; SQL [从cfg_report_list中选择DEFAULT_REPORT_PARAM_XML,其中report_name ='Payments STP Report'"];不支持的功能;嵌套异常是java.sql.SQLFeatureNotSupportedException:不支持的功能
我正在使用的PFB代码示例
byte[] configxml = jdbcTemplate.queryForObject( "select DEFAULT_REPORT_PARAM_XML from cfg_report_list where report_name='Payments STP Report'", byte[].class);
请注意,我使用的是spring-batch 3.0.1 RELEASE.
请让我知道这个问题的解决方案.
谢谢