如何使用BeanPropertyRowMapper将jdbcTemplete.query中的参数映射出来

时间:2014-04-20 05:59:20

标签: java spring spring-jdbc

我使用Spring的JdbcTemplate.query()来调用Stored Procedure和BeanPropertyRowMapper来将结果集映射到Bean。我的存储过程具有2个IN参数和2个具有多行RS的OUT参数。我可以通过以下方式发送存储过程的IN参数并将RS映射到Bean:

final String STORED_PROC_NAME= "{CALL MyStoredProc(?,?)}";
 List<MyBean> myBeanList= jdbcTemplate.query(
                    STORED_PROC_NAME,
                    new Object[] { 12, 100 }, //IN PARAMETERS
                    new BeanPropertyRowMapper<MyBean>(MyBean.class)); // RS to Bean Mapper

如何映射OUT参数。我想利用BeanPropertyRowMapper

0 个答案:

没有答案