0 votes
in Spring by

In Spring JDBC, which of the following is NOT a core benefit?

a) Reduction of boilerplate code

b) Consistent error handling

c) Automatic connection pooling

d) Object-relational mapping capabilities

1 Answer

0 votes
by
d) Object-relational mapping capabilities

Explanation:

Spring JDBC focuses on simplifying database operations and does not provide ORM capabilities. For ORM, Spring offers the Spring Data JPA module.
...