Spring JDBCTemplate Stored Procedure with ResultSet and OutPut Parameter
问题 I created a stored procedure which returns result rows and two output parameters. I am unable to find any thing in spring from which i can get ResultSet and outPutParameters . I want to achieve something like this using Spring framework. 回答1: We use something like the following in our code public Map<String, Object> findData() { List prmtrsList = new ArrayList(); prmtrsList.add(new SqlParameter(Types.VARCHAR)); prmtrsList.add(new SqlParameter(Types.VARCHAR)); prmtrsList.add(new