为了账号安全,请及时绑定邮箱和手机立即绑定

我应该如何使用jdbc来尝试使用资源呢?

我应该如何使用jdbc来尝试使用资源呢?

动漫人物 2019-07-27 15:15:12
我应该如何使用jdbc来尝试使用资源呢?我有一种使用JDBC从数据库中获取用户的方法:public List<User> getUser(int userId) {     String sql = "SELECT id, name FROM users WHERE id = ?";     List<User> users = new ArrayList<User>();     try {         Connection con = DriverManager.getConnection(myConnectionURL);         PreparedStatement ps = con.prepareStatement(sql);          ps.setInt(1, userId);         ResultSet rs = ps.executeQuery();         while(rs.next()) {             users.add(new User(rs.getInt("id"), rs.getString("name")));         }         rs.close();         ps.close();         con.close();     } catch (SQLException e) {         e.printStackTrace();     }     return users;}如何使用Java 7试着用资源来改进这个代码?我尝试了下面的代码,但是它使用了很多try块,而不改进可读性太多了。我应该用try-with-resources以另一种方式?public List<User> getUser(int userId) {     String sql = "SELECT id, name FROM users WHERE id = ?";     List<User> users = new ArrayList<>();     try {         try (Connection con = DriverManager.getConnection(myConnectionURL);              PreparedStatement ps = con.prepareStatement(sql);) {             ps.setInt(1, userId);             try (ResultSet rs = ps.executeQuery();) {                 while(rs.next()) {                     users.add(new User(rs.getInt("id"), rs.getString("name")));                 }             }         }     } catch (SQLException e) {         e.printStackTrace();     }     return users;}
查看完整描述

3 回答

?
神不在的星期二

TA贡献1963条经验 获得超6个赞

我意识到这很久以前就已经回答了,但我想提出一种额外的方法,以避免嵌套的使用资源的尝试双块。

public List<User> getUser(int userId) {
    try (Connection con = DriverManager.getConnection(myConnectionURL);
         PreparedStatement ps = createPreparedStatement(con, userId); 
         ResultSet rs = ps.executeQuery()) {

         // process the resultset here, all resources will be cleaned up

    } catch (SQLException e) {
        e.printStackTrace();
    }}private PreparedStatement createPreparedStatement(Connection con, int userId) throws SQLException {
    String sql = "SELECT id, username FROM users WHERE id = ?";
    PreparedStatement ps = con.prepareStatement(sql);
    ps.setInt(1, userId);
    return ps;}




查看完整回答
反对 回复 2019-07-28
?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

在您的示例中不需要进行外部尝试,所以您至少可以从3下降到2,而且也不需要关闭;在资源列表的末尾。使用两个try块的优点是,您的所有代码都是预先出现的,因此您不必引用单独的方法:

public List<User> getUser(int userId) {
    String sql = "SELECT id, username FROM users WHERE id = ?";
    List<User> users = new ArrayList<>();
    try (Connection con = DriverManager.getConnection(myConnectionURL);
         PreparedStatement ps = con.prepareStatement(sql)) {
        ps.setInt(1, userId);
        try (ResultSet rs = ps.executeQuery()) {
            while(rs.next()) {
                users.add(new User(rs.getInt("id"), rs.getString("name")));
            }
        }
    } catch (SQLException e) {
        e.printStackTrace();
    }
    return users;}



查看完整回答
反对 回复 2019-07-28
?
杨__羊羊

TA贡献1943条经验 获得超7个赞

下面是一种使用lambdas和JDK 8供应商来满足外部所有尝试的简洁方法:

    try (Connection con = DriverManager.getConnection(JDBC_URL, prop);
            PreparedStatement stmt = ((Supplier<PreparedStatement>)() -> {
                try {
                  PreparedStatement s = con.prepareStatement(
                        "SELECT userid, name, features FROM users WHERE userid = ?");
                  s.setInt(1, userid);
                  return s;
                } catch (SQLException e) { throw new RuntimeException(e); }
            }).get();
          ResultSet resultSet = stmt.executeQuery()) {
    }



查看完整回答
反对 回复 2019-07-28
  • 3 回答
  • 0 关注
  • 293 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信