Ciao, da oggi è disponibile il download di BusinessLab versione 1.0.125, la versione attualmente disponibile prevede una registrazione che non implica nessun pagamento (gratis). E’ un sistema semplice, ma molto potente per gestire i contenuti della vostra azienda, emettere fatture, gestire anagrafiche etc. , l’elenco delle caratteristiche di questo software le potete trovare…
Leggi tutto
Secondo il calendario pubblicato, la versione finale di Java7 sarà rilasciata il 28 luglio 2011. Sono già disponibili delle early build con le nuove features ma ovviamente non sono stable build. Le migliorie del linguaggio: Invoke dynamic: estensione della JVM per rendere più facile e performante l’esecuzione dei linguaggi dinamici che girano con la JVM…
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
Today we started on new project , tha base platform was Java with the Eclipse Helios using ZK and JPA frameworks. For JDBC there was no problem, it is simple usinig the version provided directly by firebirdsql.org at http://www.firebirdsql.org/index.php?op=files&id=jaybird but when we have tried to connect via JPA we didn’t able to acquire the DB…
Leggi tutto
Lavorando con Eclipse potrebbe capitare di incontrare una serie di problemi con la modalità di debug java. In particolare, eclipse, sembra ignorare completamente i break points inseriti non interrompendo l’esecuzione del codice. Sembra che il problema sia dovuto alla JRE utilizzata. In particolar modo dalla versione 1.6.14 fino alla 1.6.20. Installando la versione 1.6.21 il…
Leggi tutto
Hello, today we share a little tool for extracting components name and id from a standard zul file. The idea behind this tool borns after reading this small talk by Ashish Dasnurkar and after a comment on his works. I think in ZK there are many ways to access components from controller class (i.e. getFellow(), Composer, CDI…)…
Leggi tutto