É possível ter mais de um recurso no try-with-resources?
Por exemplo
try(Connection conn = new Connection(), PrepareStatement ps = new PrepareStatement()
ou é mais indicado utiliziar o versão antigo
try{
Connection coon = getConnection()
PrepareStatement ps = ...
}Catch(Exception e){
}finally{
if(ps != null){
ps.close()
}
if(conn != null){
conn.close()
}
}