Posted by Tarin Gamberini
Sun, 20 Sep 2009 05:52:00 GMT
JavaDay Verona 2009
Quando: sabato 24 ottobre 2009 dalle 9:30 alle 16:00.
Dove: ITIS G. Marconi – Piazzale Romano Guardini, 1 – 37138 Verona.
Programma: |
09:30 |
Accoglienza |
10:30 |
“IDE open-source: Eclipse vs. NetBeans” a cura di Alessandro Carraro e Lucio Benfante |
11:25 |
“Java e i database: da JDBC a JPA” a cura di Lucio Benfante |
12:05 |
“Spring: usarlo conviene, ma usalo bene!” a cura di Lucio Benfante |
12:45 |
Pausa pranzo |
14:30 |
“Stanco del solito database SQL? Passa ad uno store RDF!” a cura di Fabrizio Giudici |
15:30 |
“Introduzione a Grails” a cura di Paolo Foletto |
16:30 |
Saluti, premi e altre attività |
Ulteriori informazioni su http://verona.javaday.it
L’iscrizione al JavaDay tramite jugevents è d’aiuto agli organizzatori, quindi:
L’iscrizione e la partecipazione al JavaDay sono gratuite.
Il JavaDay Verona 2009 è organizzato dal JUG Padova in collaborazione con il LUG Verona, e si svolgerà in concomitanza e nella stessa sede del locale LinuxDay 2009.
Posted in Meeting, Eventi | Tags Eclipse, grails, jdbc, JPA, netbeans, RDF, spring | 7 comments
Posted by Lucio Benfante
Wed, 20 Feb 2008 10:30:00 GMT
Occasionally I experienced some problems in debugging test classes using NetBeans with Maven projects. Simply, the debugger started but didn’t attach to the running tests.
Eventually I discovered the reason!
I used to configure the surefire plugin with:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
<useFile>true</useFile>
<forkMode>once</forkMode>
<argLine>-Xmx512M</argLine>
</configuration>
</plugin>
The problem is the argLine
parameter. It will override the parameters the Mevenide plugin will pass for debugging tests. So, I commented it in my configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
<useFile>true</useFile>
<forkMode>once</forkMode>
</configuration>
</plugin>
...and now I can debug my tests!
Posted in Tips & Tricks, Programmazione | Tags debug, maven, netbeans, test | 46 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 Dario Santamaria
Sat, 04 Feb 2006 12:21:00 GMT
The stable version of my favourite Java IDE - NetBeans 5.0 - is out!
Download it now
Posted in Software | Tags ide, netbeans | 8 comments | no trackbacks