}
//System.out.print(lista.size() + "es el tamaño" + " tipo" + prefForm.getSentido() );
prefForm.setSentido("");
Iterator it = lista.iterator();
while(it.hasNext()){
Preferencia p = (Preferencia) it.next();
Hibernate.initialize(p.getConocimiento());
JSONObject json = new JSONObject();
json.put("id", p.getIdPreferencia().intValue());
json.put("nombre", p.getConocimiento().getNombre());
json.put("nivel", p.getNivel());
jsonArray.add(json);
}
PrintWriter pw = response.getWriter();
pw.write( jsonArray.toString() );