Hi A,
Just try to find out why and where that null pointer exception is occuring. Is it because of missing checkbox value or something else.
If it is really because of missing checkbox value, then
you should check the validity of that condition.
If you want to keep the form been in the session and still want the checkbox to be unchecked at each time you access the jsp, you shall have to override the reset method of the formbean. In reset method set the bean property which stores the values of check box to null.
I think, this would help you.