why when using jdbctemplate.query, I get the data in the form @ b2a1bdf
RowMapper seems to be used and with other entities there are no problems.
List<Divisions> divisionses = jdbcTemplate.query(sql, (rs, rowNum) -> { Divisions divisions = new Divisions(); divisions.setName(rs.getString("name")); divisions.setPf(rs.getString("pf")); return divisions; }); return divisionses;
ResultSete? - iksuyListcorrectly. What prevents the debugger to get intoRowMapperand see if it pulls the field correctly? - iksuyList. Show the code as you add the data from theList+ to the view; override in yourDivisionsclass thetoString()method - Chubatiy