Hi,
What's the difference between a JdbcTemplate object and a SimpleJdbcTemplate?
Thanks,
P.
Hi,
What's the difference between a JdbcTemplate object and a SimpleJdbcTemplate?
Thanks,
P.
From the Javadoc, SimpleJdbcTemplate
is a
Java-5-based convenience wrapper for the classic Spring
JdbcTemplate
, taking advantage of varargs and autoboxing, and exposing only the most commonly required operations in order to simplifyJdbcTemplate
usage.
In other words, SimpleJdbcTemplate
just breaks the "regular" JdbcTemplate
down to the most common/convenient parts — in other words, it simplifies it.