Posted by Tarin Gamberini
Sun, 21 Aug 2011 08:04:00 GMT
JUG Meeting#60: Corso iReport
Quando: sabato 24 settembre dalle 9:00 alle 18:00
Dove: La Forma del Libro via XX Settembre, 63 Padova .
Un’intera giornata di corso su iReport, tenuto dal suo creatore e principale sviluppatore Giulio Toffoli.
| Programma: |
| 09:00 |
Accoglienza |
| 09:30 |
Funzionamento di JasperReports e creazione del primo template
Utilizzare iReport e Jaspersoft Studio (sorgenti dati, campi, variabili, parametri, gruppi, struttura del report) |
| 11:00 |
Pausa caffè |
| 11:15 |
Grafici, sottoreport e crosstab
Componenti personalizzati |
| 13:00 |
Pranzo |
| 14:00 |
Esportare i report e integrazione di JasperReports in applicativi web
Lavorare con Jaspersoft Server: pubblicare e gestire i report da iReport
Creare drilldown reports |
| 15:30 |
Pausa caffè |
| 15:45 |
Integrazione di JasperReports server: webservices e REST
Visualizzare i report sull’ iPhone in applicazioni native |
| 18:00 |
Fine meeting |
Ulteriori informazioni su jugevents.
Per ragioni di spazio e di organizzazione il numero di partecipanti sarà limitato, quindi l’iscrizione è obbligatoria.
Al termine del meeting andremo tutti assieme a mangiare una pizza.
Vi aspettiamo!
Posted in Meeting, Software, Eventi | Tags Corso, ireport | 7 comments
Posted by Lucio Benfante
Sat, 01 Nov 2008 10:57:00 GMT
Dopo una lunga gestazione abbiamo rilasciato la versione 2.0 di Parancoe.
Leggete l’annuncio ufficiale nel sito di Parancoe:
http://www.parancoe.org/news/2008/11/01/parancoe-2-0-released/
Non mancate anche di leggere la nuovissima Parancoe Reference Guide, sia in HTML, sia in PDF.
Posted in Software | Tags Parancoe | 1 comment
Posted by Lucio Benfante
Tue, 15 Apr 2008 08:03:00 GMT
Ottimo risultato questa settimana per la nostra applicazione JUG Events. E’ infatti esposta nella home page di java.net:
JUG Events è ora anche l’applicazione usata da molti JUG sparsi per il mondo per gestire i propri eventi, e dalla JUG Community per esporli nella pagina degli eventi dei JUG su java.net.
Grazie a chi ha contribuito e contribuisce a JUG Events e a Parancoe, il meta-framework su cui si basa. Entrambi i progetti sono open-source…chi ha voglia di fare, si faccia avanti! :-)
Posted in Software | Tags Events, JUG | 10 comments
Posted by Dario Santamaria
Tue, 25 Sep 2007 08:10:00 GMT
Da qualche giorno NetBeans è stato inserito nei pacchetti ufficiali della distribuzione Debian.
Read more...
Posted in Software | Tags debian, ide, netbeans | 10 comments
Posted by Lucio Benfante
Tue, 18 Sep 2007 02:53:00 GMT
Procede la corsa verso la release di NetBeans 6, prevista per fine novembre.
Da ieri è disponibile la Beta 1
http://www.netbeans.org/community/releases/60/index.html
Posted in Software | Tags ide, netbeans | 2 comments
Posted by Paolo Foletto
Sun, 16 Sep 2007 06:56:00 GMT
Volevo segnalare unprogetto open source scritto in Java.
Si tratta di un clone di MS project, riuscito direi bene.
E’ un buon strumento per lo gestione di piccoli progetti,
e’ molto comodo per aprire dei file di MS project, e per
avere facilmente qualche grafico.
Per la gestione di progetti più grossi esiste una versione online
a pagamento con un canone mensile
https://sourceforge.net/projects/openproj/
Posted in Software | Tags java, management, open, project | 4 comments
Posted by Lucio Benfante
Mon, 03 Sep 2007 14:01:28 GMT
JUG Events è finalmente online!
www.jugevents.org
A parte l’utilità dell’applicazione per il nostro e gli altri JUG, mi preme qui sottolineare che è la prima applicazione sviluppata dal JUG Padova, e spero non l’ultima.
Gli sviluppatori di JUG Events siamo stati principalmente io ed Enrico, con il supporto di Paolo F. Ma l’applicazione usa il nostro framework Parancoe, quindi gran parte del merito va anche a tutti quelli che hanno contribuito e partecipano al suo sviluppo.
Posted in Software, Programmazione | 4 comments
Posted by Lucio Benfante
Fri, 27 Jul 2007 04:42:00 GMT
(You’ll find all the code of this post in Benfante’s Utilities mini-library)
One of the futures I ‘m reappraising is the JDK 5 enhanced for statement.
I still consider it too limited, but it’s very comfortable in the simplest (and maybe common) cases.
But…what if the elements on which you want to iterate are not managed by an Iterable class?
For example, this happens with the XOM library, where the Element.getChildElements returns an instance of the Elements class, wich is neither a Collection, or an Iterable class. So, for iterating on children elements, you have to use the basic for statement:
for (int i=0; i < elements.size(); i++) {
Element element = elements.get(i);
// etc...
}
I would like to write simply:
for (Element element: elements) {
// etc...
}
So I wrote an Iterabletor class that builds a proxy around a class, enhancing it with the Iterable interface.
Now You can write:
Iterable<Element> iterable =
new Iterabletor<Element>(elements).getIterable();
for (Element element: iterable) {
// etc...
}
Read more...
Posted in Tips & Tricks, Software | Tags for, Iterable, Iterator, proxy, reflection | 38 comments
Posted by Lucio Benfante
Mon, 02 Jul 2007 06:38:00 GMT
Normalmente Tomcat è più che sufficiente per un’applicazione sviluppata con Parancoe. Ma a volte potrebbe servirvi (o potreste essere costretti ad usare) un application server J(2)EE completo, come, ad esempio, Glassfish.
Se questo è il vostro caso, potrebbe interessarvi un articolo presente nel Wiki di Parancoe:
Using Parancoe with Glassfish
Posted in Software | 1 comment | no trackbacks