List传参方式 举个例子 sql = "select * from table where id=? and param=?": sql中的参数要用?形式,然后使用list.add(param) 向list中添加这个参数,最后通过jdbcTemplate.queryForList查询方式,将sql和list加入方法中就可以了. Map传参方式 使用NamedParameterJdbcTemplate: sql例子:select * from table where id = :par
总结: 1.mybaits配置工2方面: i行为配置,如数据源的实现是否利用池pool的概念(POOLED – This implementation of DataSource pools JDBC Connection objects to avoid the initial connection and authentication time required to create a new Connection instance.This is a popular approach fo