public class MapParam_QueryTest {
@Test
public void mapParam_QueryTest() throws IOException, URISyntaxException, InterruptedException, SQLException {
System.out.println("--->>mapParam_QueryTest<<--");
//
AppContext app = Hasor.createAppContext("net/test/simple/db/jdbc-config.xml", new OneDataSourceWarp());
JdbcTemplate jdbc = app.getInstance(JdbcTemplate.class);
//
Map<String, String> paramMap = new HashMap<String, String>();
paramMap.put("id", "76%");
List<Map<String, Object>> userList = jdbc.queryForList("select * from TB_User where userUUID like :id", paramMap);