jsp - error for not correctly use JSTL
问题 i have this method in my class conexion public ArrayList<Comuna> getComunas() { ConexionBd(); try { comunas = new ArrayList<Comuna>(); resultado = consulta.executeQuery("select * from comuna"); while(resultado.next()) { comunas.add(new Comuna(resultado.getInt("com_id"),resultado.getInt("pro_id"),resultado.getString("com_nombre"))); } CerrarConexionBd(); } catch (Exception e) { e.printStackTrace(); // TODO: handle exception } return comunas; } I'm trying to put the value here <c:set var=