Hi,
some of my business objects have a lock declared:
private final ReadWriteLock lock = new ReentrantReadWriteLock();
When I load such an object, "lock" is set to null which results in some nasty NPEs. Could anyone give me a hint how I should solve this problem?
Thanks
Johannes