问题描述
我采用的是Spring+JDBC请问Spring怎么调用mysql存储过程?用JdbcTemplate的什么方法可以呀?
解决方案
解决方案二:
顶起,近期也在想这个问题..坐等楼下..
解决方案三:
解决方案四:
可以callableStatementCallback
解决方案五:
publicvoidtest(){callableStatementCallbackcb=newcallableStatementCallback(){publicobjectdoInCallableStatement(CallableStatementcs)throwsSQLException{cs.ececute();returnnull;}}};JdbcTemplate.execute("{存储过程名字}",cb)}大概这样
时间: 2024-10-02 14:30:15