views:

95

answers:

0

For Spring 2.5.6 and above the two reasons that I can think of for choosing spring jdbc are :

  1. BeanPropertySqlParameterSource - for insert/update
  2. ParameterizedBeanPropertyRowMapper - for select

These two give you the power of basic orm as you don't need to code your rowmappers.

Thoughts/Comments?