因此,有时在我的Java应用程序中,我需要以相同的方法向MySQL数据库发送多个查询。
我在我的应用程序中使用连接池:
private static final BasicDataSource dataSource = new BasicDataSource();
static {
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql://--------:---/agenda?useSSL=true");
dataSource.setUsername("----");
dataSource.setPassword("----");
}
我的数据库类中有一个方法:
public static Employee getEmployee(int id) {
Employee employee = null;
try { String query = "SELECT * FROM entity WHERE entityId = " + id + " LIMIT 0, 1;";
Connection con = dataSource.getConnection();
java.sql.Statement indexStmt = con.createStatement();
ResultSet indexRs = indexStmt.executeQuery(query);
while (indexRs.next()) {
employee = new Employee(indexRs.getInt(1),
indexRs.getString(3), indexRs.getString(4),
indexRs.getString(5), indexRs.getString(6));
}
indexStmt.close();
indexRs.close();
con.close();
} catch (SQLException e) {e.printStackTrace();}
return employee;
}
我是否应该花时间尝试使用相同的Connection con = DataBase.getSource()
或者即使我正在做这样的事情,从池中获取新的connection
也没关系?
init() {
Employee employee1= DataBase.getEmployee(11);
Employee employee2 = DataBase.getEmployee(12);
}
我可以实现这两行代码使用相同connection
的东西,但这是明智的还是不必要的?
//注意员工ID永远不会从用户输入,因此无法进行SQL注入。
答案 0 :(得分:1)
这意味着在现有连接池之上运行您自己的连接池。要使这两个层清晰地交互并不容易。
但是,通过将已打开的Connection传递给getEmployee()方法,您可能会获得性能提升,这样您就可以在外部获取连接,将其用于多个连续调用,然后关闭它。但我不知道它有多大的性能差异,与当前的架构相比,它肯定会使你的代码不那么优雅。