0 votes
in Spring by

Which of the following is NOT a responsibility of the RowMapper in Spring JDBC?

a) Establishing a database connection

b) Mapping a row of the result set to an object

c) Handling data type conversions

d) Returning objects from the mapped rows

1 Answer

0 votes
by
a) Establishing a database connection

Explanation:

RowMapper is responsible for mapping rows of the result set to objects. Establishing a database connection is not its responsibility.
...