I was trying to get data from a MySQL database using the Spring utility ResultSetExtractor, but I got the following exception:
ResultSetExtractor
Exception in thre
The problem is in
Try changing the name="jdbcTemplate" to name="template". Since you have given name as jdbcTemplate spring will search for a setter method with name setJdbcTemplate() in EmployeeDao class, but the acutal method you have is setTemplate()
name="jdbcTemplate"
name="template"