据我所知,我们使用Mysql-connector jar将java应用程序连接到数据库。我正在关注一个春季教程,上面提到的两件事都是通过maven添加的。两者有什么区别?
答案 0 :(得分:4)
MySQL Connector是一个允许Java与MySQL通信的驱动程序。
Spring JDBC是一个使编写JDBC代码更容易的库。 JdbcTemplate特别有用。
在JdbcTemplate之前:
Connection connection = null;
Statement statement = null;
ResultSet rs = null;
int count;
try {
connection = dataSource.getConnection();
statement = connection.createStatement();
rs = statement.executeQuery("select count(*) from foo");
if(rs.next()) {
count = rs.getInt(0);
}
} catch (SQLException exp) {
throw new RuntimeException(exp);
} finally {
if(connection != null) {
try { connection.close(); } catch (SQLException exp) {}
}
if(statement != null) {
try { statement.close(); } catch (SQLException exp) {}
}
if(rs != null) {
try { rs.close(); } catch (SQLException exp) {}
}
}
在JdbcTemplate之后:
JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
int count = jdbcTemplate.queryForObject("select count(*) from foo", Integer.class);
了解一种方式如何减少?