I recently had some trouble deploying an ear file to the new glassfish v3. It works on glassfish v2. After some investigation I found that the way the ejb’s were located in...
When you want timestamps on objects persisted with hibernate you can add callback methods that initialize these Date properties properly. @Entity@Table(name = "entities") public class Entity {//... private Date created; private Date...
I got nullpointers for all EJB injected dao’s :o. In fact a colleague of me already blogged the solution. It’s a small world after all :D. I was trying to get @EJB...