我怎样才能解决下面的sonarqube问题
How can I fix below sonarqube issue
请查看下面的截图。我能够使用 try-with-resources 解决所有其他问题。但我对如何使用 try-with-resources 解决这个问题感到困惑。
我觉得应该像下面这样
try (Connection con = client.getConnection();
Statement stmt = con.createStatement()) {
ResultSet result = stmt.executeQuery(...)
...
}
请查看下面的截图。我能够使用 try-with-resources 解决所有其他问题。但我对如何使用 try-with-resources 解决这个问题感到困惑。
我觉得应该像下面这样
try (Connection con = client.getConnection();
Statement stmt = con.createStatement()) {
ResultSet result = stmt.executeQuery(...)
...
}