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