Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a legacy database that I connect to and not sure why I get this result when I parse the json object in my client. The column Character customersMname is defined in the domains static constraints as:

customersMname nullable: true, maxSize: 1

the result I get back from the JSON object when the field is null is:

<jsonname2>customersMname</jsonname2>
<jsonvalue2>{"class":"java.lang.Character"}</jsonvalue2>

There is actual data in the database column and it should be P. Seems this is occurring with single character columns in MYSQL db when the datatype is defined as CHAR(1) or VARCHAR(1). Any ideas?

share|improve this question
What type is the property defined as in the domain class? Can you post your code that creates a JSON object? – erturne Mar 25 '11 at 5:00
The column is type Character, the domain class was auto generated by the db-reverse-engineer plugin in the STS ide. Title of this should be changed to "Character column returns garbage". I did fix this by changing the domain type to String but am curious if this is a bug or not? – JPM Mar 25 '11 at 16:28
In the future, you could add a custom JSON marshaller for your domain class (or even java.lang.Character to fix the issue in all cases) that generates the correct null value. That way you don't have to modify your generated domain class. – Rhysyngsun Mar 28 '11 at 15:34
I shouldn't have to do that if they just fix Hibernate. I will have to submit a bug fix for this. But yes, that is a good idea to fix the current problems thanks Rhysyngsun – JPM Mar 29 '11 at 19:52

1 Answer

up vote 0 down vote accepted

Apparently this is a bug in the system. Work around is to change the domain type to String and be done with it.

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.