Add Me!Close Menu Navigation
Add Me!Open Categories Menu

Currently Browsing

Entwicklung

6 Januar
Posted in Entwicklung

Oracle SQL Syntax

As I tend to forget the syntax of Oracle SQL commands, I will write them down here, every time I have to look them up. Beginning now: Turn off variable replacement in SQL+ set define off; Add Column alter table <tablename> add column <column_name> <column_datatype> <column_constraint> Example: alter table test_table [...]

22 Dezember
Posted in Entwicklung, Java

Hibernate SequenceHiLoGenerator

Recently I digged a little in the mechanism of our ID generation. One of our IDs was annotated like this: @Id @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = “myIdGen”) @SequenceGenerator(name = “myIdGen”, sequenceName = “MY_SEQUENCE”) protected Long id; But seemingly the underlying (Oracle-)sequence remained untouched. On an empty DB, with a sequence [...]

8 September
Posted in Entwicklung, Java

JMS Fun in JEE Wonderland

Recently I had to dig into JMS to implement some asynchronous behaviour in our current application. I haven’t used JMS thus far, but it looked quite promising and straightforward to me. I got the ConnectionFactory and queues working quite fast and the first messages appeared in my queue. Horray! To [...]

18 August

EclipseCon 2011 Session proposed

I managed to propose a session for the EclipseCon 2011 conference the last minute. The talk will deal with ouir experiences while implementing a Rich Client based on Eclipse RCP. The decision if it will accepted is announced on September, 1st. So keep your fingers crossed. I am excited already! [...]

28 Juli

Neuer Artikel online

Meinen neuen Artikel gibt es jetzt auch hier auf Slideshare.

10 Juli

Neuer Artikel veröffentlicht

Mein neuer Artikel wurde in der aktuellen Ausgabe des Java-Magazins veröffentlicht. Es geht um einen Vergleich verschiedener RCP-Frameworks hinsichtlicht der Erstellung formularbasierter Rich Clients. Eine Übersicht findet man hier. Vielleicht kann ich auch die Tage ein PDF des Artikels hier verfügbar machen.

7 Juli

Eclipse RCP: What to do when things don’t work on your colleague’s machine

I have compiled a list of potential pitfalls, that one might step in when executing code on another system: Check your IDs Check them again Does your product contain all nessesary Plugins/Features Does your run-configuration (the one generated by selecting Run on your product) contain all your plugins? Did you [...]

2 Juli

Eclipse RCP: The dreaded Plugin ID

Hi all! Apologies for not updating this blog lately. As I want to talk a little bit about my experiences with Eclipse RCP, I think it is suitable if I tried to write in english. Perhaps this can be helpful for non-german speakers aswell, as information/documentation about E-RCP is a [...]

16 Oktober
Posted in Entwicklung, Java

Warum sind checked exceptions so schlimm?

Momentan sieht man auf jedem dritten Blog bei Dzone, die Überschrift "Checked Exceptions are bad". Aber ich habe bisher noch nicht ganz verstanden warum! In einem Fehlerfall (bspw. bei einer klassischen IOException) ist diese Art Exception-Handling doch eigentlich ganz sinnvoll. Selbstverständlich haben Exceptions nichts im Kontrollfluss verloren. Ich habe vielleicht [...]

16 Oktober
Posted in Entwicklung, Javascript

Frameworks and Building blocks in Javascript

Ich habe grad auf Ajaxian mal wieder was spannendes entdeckt. Muss ich mir die Tage mal näher anschauen.