I have a serious problem with hibernate. I followed various books und online tutorials, but I ever get the same Exception \"ExceptionInInitializerError\" obviously thrown by
aused by: java.lang.NullPointerException at de.marcelstuht.nerven2.shared.model.Account.(Account.java:52) ... 49 more
Remove anything from your constructor in Account. You have a circular dependency. And Hibernate uses the public no args consructor for its beans
Trust me: public no arg constructor with NO code, except POJO setters. Nothing else.