Tagged “ResultSetExtractor example with JdbcTemplate”

Spring JDBC - What is ResultSetExtractor?

06 Jan, 2019

It is an interface used by query methods of JdbcTemplate. It is better suitable if you want to map one result object per ResultSet otherwise RowMapper is simpler choice to map one row of ResultSet with one object.

Tags:

See all tags.