Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple JPA @Entity that has a property of type java.util.Locale.

When I try and persist this, I get the following error:

java.lang.IllegalArgumentException: locale: java.util.Locale is not a supported property type. 
       at com.google.appengine.api.datastore.DataTypeUtils.checkSupportedSingleValue( DataTypeUtils.java:174) 
... 

In the appengine SDK (1.3.1), datanucleus-core-1.1.5.jar contains plugin.xml which contains the following type conversion "extension":

<java-type name="java.util.Locale" persistent="true" embedded="true" 
string-converter="org.datanucleus.store.types.LocaleStringConverter"/> 

How do I "activate" this type converter in my @Entity class?

share|improve this question

1 Answer

up vote 0 down vote accepted

This seems to be a significant limitation of Google's use of datanucleus. See the following (2nd last heading):

http://datanucleus.blogspot.com/2010/01/gaej-and-jdojpa.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.