How can JDBC be used more efficiently in the Spring framework?

How can JDBC be used more efficiently in the Spring framework?

Ninja Asked on 19th September 2018 in JSF.
Add Comment
1 Answer(s)
Best answer

When using the Spring JDBC framework the burden of resource management and error handling is reduced. So developers only need to write the statements and queries to get the data to and from the database. JDBC can be used more efficiently with the help of a template class provided by Spring framework, called JdbcTemplate.

Ninja Answered on 19th September 2018.
Add Comment