Ciao a tutti! Oggi pomeriggio i nostri sistemi hanno avuto un down improvviso. Tutte le connessioni verso i database sono improvvisamente interrotte… Indaga indaga, nel log di tomcat ha fatto la sua comparsa questo messaggio: 93288680 [http-8443-9] null org.hibernate.ejb.packaging.PersistenceXmlLoader – Warning parsing XML: XML InputStream(4) schema_reference.4: Failed to read schema document ‘http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd’, because 1) could…
Leggi tutto
Ciao a tutti! Finalmente pronta in versione Beta la versione Cloud di Shareteam!!!!! Oh yeah!!!!!!!! Tutte le info alla pagina dedicata.
Ciao ragazzi, finalmente il giorno è arrivato!!!! Lunedì 21 marzo il nostro amato server di produzione è partito per la sua destinazione nel Data Center di Tiscali nel mix di Milano in via Caldera. Ecco i dati del server (anche se la RAM è già stata estesa!!!): L’installazione, devo ammettere, ha creato qualche problema, fondamentalmente…
Leggi tutto
Ciao a tutti! Un breve articolo per documentare l’attività che con Ivan stiamo svolgendo da consulenti in iFaber. Il progetto, nato in collaborazione con Elever srl ormai un anno fa, è finalizzato alla realizzazione di una portale web per la gestione e qualifica dei fornitori. Il portale è destinato sia ad uso interno (Unicredit) che…
Leggi tutto
Hi, a short post to show a simple tip useful when dealing with Java Maps. The following Function sorts a Map through a custom Comparator and returns a new ordered LinkedHashMap:
1 2 3 4 5 6 7 8 9 |
public static Map sortMapByKey(Map map, Comparator comparator) { List list = new LinkedList(map.keySet()); Collections.sort(list, comparator); Map result = new LinkedHashMap(); for (Object o : list) { result.put(o, map.get(o)); } return result; } |
And this is an example of Comparator for MyClass objects sorted on the base of a String property “sortField” (note the toLowerCase method):…
Leggi tutto
Hi, Maybe the issue addressed by this article could appear slightly prosaic for a develper familiar with Eclipse IDE. But for me, coming from a Java development based on Netbeans IDE, this step was not so simple… This article absolutely should not be intended as a comparison between the two development IDEs! Having said that,…
Leggi tutto