首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

3、Failed to convert property value of type [org.apache.commons.dbcp.BasicDataSou

2012-11-13 
三、Failed to convert property value of type [org.apache.commons.dbcp.BasicDataSource] to requiredpr

三、Failed to convert property value of type [org.apache.commons.dbcp.BasicDataSource] to required

private JdbcTemplate template;    public void setTemplate(DataSource dataSource){        //相当于this.getJdbcTemplate()        template = new JdbcTemplate(dataSource);            }


引入DataSource类出错:

import sun.jdbc.odbc.ee.DataSource;

正确的应该是:
import javax.sql.DataSource;

热点排行