JDBC spring数据源声明

时间:2013-05-03 14:20:23

标签: java spring jdbc

为什么这不起作用(抛出异常:Cannot create JDBC driver of class '' for connect URL 'null')?

public class Test {

    public static BasicDataSource dataSource = new BasicDataSource();

    public Test() {
        dataSource.setDriverClassName("com.mysql.jdbc.Driver");
        dataSource.setUsername("root");
        dataSource.setPassword("");
        dataSource.setUrl("jdbc:mysql://localhost/database");
        dataSource.setMaxActive(10);
        dataSource.setMaxIdle(5);
        dataSource.setInitialSize(5);
        dataSource.setValidationQuery("SELECT 1");
    }

    public static void main(String[] args) throws Exception {
        JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
        SqlRowSet rs = jdbcTemplate.queryForRowSet("SELECT * FROM table");
    }

}

但这确实有效

public class Test {

    public static void main(String[] args) throws Exception {
        dataSource.setDriverClassName("com.mysql.jdbc.Driver");
        dataSource.setUsername("root");
        dataSource.setPassword("");
        dataSource.setUrl("jdbc:mysql://localhost/database");
        dataSource.setMaxActive(10);
        dataSource.setMaxIdle(5);
        dataSource.setInitialSize(5);
        dataSource.setValidationQuery("SELECT 1");

        JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
        SqlRowSet rs = jdbcTemplate.queryForRowSet("SELECT * FROM table");
    }

}

为什么我不能在构造函数中启动一次dataSource并在整个方法中使用它?

1 个答案:

答案 0 :(得分:3)

public static void main(String[] args) throws Exception {
    JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
    SqlRowSet rs = jdbcTemplate.queryForRowSet("SELECT * FROM table");
}

不会调用您的构造函数。它是Test类中的静态方法,因此纯粹是命名空间。没有创建Test的实例,因此您的数据源代码不会运行。