Code Snippet
Spring Framework JdbcTemplate
Please note, the content of this post has been copied from the Spring website and modified by me. SELECT public int test() { var sql = "select count(*) from product"; return this.jdbcTemplate.queryForObject(sql, Integer.class); } public int test() { var sql = "select count(*) from product where name = ?"