


We are getting the below exception while tryig to process a excel file and update the nodes.
Please can you let us know if any config changes need to be done.
at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:192)
at org.apache.jackrabbit.oak.jcr.session.NodeImpl.internalSetProperty(NodeImpl.java:1361) [org.apache.jackrabbit.oak-jcr:1.8.2]
at org.apache.jackrabbit.oak.jcr.session.NodeImpl.setProperty(NodeImpl.java:434) [org.apache.jackrabbit.oak-jcr:1.8.2]
Views
Replies
Sign in to like this content
Total Likes
Not sure what is the ask here - reason for NPE at checkNotNull() or otherwise why your code throws NPE or something else?
Preconditions.checkNotNull() is doing what it's supposed to do. If the passed value/object is null it would throw NPE.
Probably when you are trying to set property on node, it is not checked-out by same user or its already checked-out by different user or it has specific properties set that do not allow your operation or the underlying object is null.
Check why/how the passed value/object is null in your source code and check node properties that you're dealing with and fix it accordingly. Share appropriate code/screenshots, if applicable.
Views
Replies
Sign in to like this content
Total Likes
Not sure what is the ask here - reason for NPE at checkNotNull() or otherwise why your code throws NPE or something else?
Preconditions.checkNotNull() is doing what it's supposed to do. If the passed value/object is null it would throw NPE.
Probably when you are trying to set property on node, it is not checked-out by same user or its already checked-out by different user or it has specific properties set that do not allow your operation or the underlying object is null.
Check why/how the passed value/object is null in your source code and check node properties that you're dealing with and fix it accordingly. Share appropriate code/screenshots, if applicable.
Views
Replies
Sign in to like this content
Total Likes