Tagged “Querying with JdbcTemplate”

Spring JDBC - What is Spring JdbcTemplate?

06 Jan, 2019

JdbcTemplate is the core class of Spring JDBC. It simplifies your interaction with low-level error prone details of JDBC access. You only pass the SQL statement to execute, parameters and processing logic for the returned data and rest is handled by it i.e. Opening Connection, transaction handling, error handling and closing Connection, Statement and Resultset.

Tags:

See all tags.