spring中调用存储过程
spring中调用存储过程2011-03-14挨踢老人springframework.jdbc.object.StoredProcedure是对应存储过程调用的操作对象,它通过其父类org.springframework.jdbc.object.SqlCall获得相应的底层API支持(CallableStatementCreator),然后在此基础之上构建了调用存储过程的执行方法。StoredProcedure是抽象类,所以需要实现相应子类以封装对特定存储...