I am using Jdbctemplate to retrieve a single String value from the db. Here is my method.
public String test() { String cert=null; Strin
to make
jdbcTemplate.queryForList(sql, String.class)
work, make sure your jdbcTemplate is of type
org.springframework.jdbc.core.JdbcTemplate