Calling stored procedure with an IN and OUT Parameter from Spring Batch
问题 I am attempting to execute a stored procedure from Spring Batch, the stored procedure has two parameters, an IN parameter and OUT parameter. What I want is to get the result set and the out parameter when the stored procedure is called. I referred to StoredProcedureItemReader and StoredProcedureItemReaderBuilder I can use this to call a stored procedure that has only IN parameter, however, I can't call after registering OUT parameter. If we refer raw JDBC template we could use, it is possible