JdbcTemplate tmTemplate =new JdbcTemplate((DataSource) util.getConnection());
JdbcTemplate 类需要传入一个datasource类型的参数,上面这么写没有报错,可是tmTemplate 这个对象不能调用update()方法,我也不太理解(DataSource) util.getConnection()这个是什么意思。。。。求求大佬们解答下,困扰好久了
JdbcTemplate tmTemplate =new JdbcTemplate((DataSource) util.getConnection());
JdbcTemplate 类需要传入一个datasource类型的参数,上面这么写没有报错,可是tmTemplate 这个对象不能调用update()方法,我也不太理解(DataSource) util.getConnection()这个是什么意思。。。。求求大佬们解答下,困扰好久了
update是绑定在connection对象的 datasource绑定JdbcTemplate