Datastore object with type and key has null property

After adding the boolean attribute to an object, retrieving this object from the data store results in an error:

Datastore entity with kind <Class> and key <Class:ID> has a 
  null property named <attribute>
+3
source share
1 answer

Do not use primitive data types, use their wrapper classes.
Instead of boolean, use Boolean, etc.

+9
source

Source: https://habr.com/ru/post/1724196/


All Articles