@Test void testJdbcTemplate(@Autowired JdbcTemplate jdbcTemplate){ String sql="select * from users where \"1=1\""; List<Map<String, Object>> maps = jdbcTemplate.queryForList(sql); System.out.println(maps);}