Montag, 7. Juli 2008
Bean Properties kopieren
Wie kopiert man Bean Properties?

org.apache.commons.beanutils.BeanUtils.copyProperties(Object target, Object source);

... link (0 Kommentare)   ... comment


Log-Datei ausgeben
Wie gibt man in Unix Änderungen in Log-Dateien aus?

tail -f dateiname

... link (0 Kommentare)   ... comment


Tomcat debuggen
Wie debuggt man eine Tomcat Applikation?

1. Enviroment Variablen in catalina.bat eintragen:
set JPDA_ADDRESS=8000
set JPDA_TRANSPORT=dt_socket
2. Tomcat starten mit: catalina jpda start
3. In Eclipse: Debug... > Remote Java Application > Host: localhost, Port: 8000

... link (0 Kommentare)   ... comment


Infos über eine DB2 Tabelle
Wie bekommt man Infos über eine DB2-Tabelle?

SELECT COLNAME, COLNO, TYPENAME, NULLS FROM SYSCAT.COLUMNS WHERE TABSCHEMA = 'Mein_Schema' and TABNAME = 'Meine_Tabelle' order by colno

... link (0 Kommentare)   ... comment