I added a EO that had a fk assoc to another entity I wasnt working with and suddenly (after a bit of refactoring) when I ran my app I kept getting: java.lang.ClassNotFoundException: oracle.jbo.server.nullImpl. So I searched through my entities for nullImpl and found <AccessorAttribute Name="AccountToDivisionFkAssoc" Association="AccountToDivisionFkAssoc" AssociationEnd="AccountToDivisionFkAssoc.sourceEnd" AssociationOtherEnd="AccountToDivisionFkAssoc.destEnd" Type="nullImpl" IsUpdateable="true"/> I changed this back to oracle.jbo.server.EntityImpl and all was well <AccessorAttribute Name="AccountToDivisionFkAssoc" Association="AccountToDivisionFkAssoc" AssociationEnd="AccountToDivisionFkAssoc.sourceEnd" AssociationOtherEnd="AccountToDivisionFkAssoc.destEnd" ...
The Incident Archive: A blog to store my knowledge on the errors that I fix on a daily basis