com.sun.jersey.spi.container.ContainerResponse mapMappableContainerException
SEVERE: The exception contained within MappableContainerException could not be mapped to a response, re-throwing to the HTTP container
com.fasterxml.jackson.core.JsonParseException: Unexpected character ('"' (code 34)): was expecting comma to separate OBJECT entries
Ex :
error :
{
"name" : "voice"
"email" : "voice@gmail.com"
}
corrected :
{
"name" : "voice" ,
"email" : "voice@gmail.com"
}
Solution : In the corrected solution put a comma.
SEVERE: The exception contained within MappableContainerException could not be mapped to a response, re-throwing to the HTTP container
com.fasterxml.jackson.core.JsonParseException: Unexpected character ('"' (code 34)): was expecting comma to separate OBJECT entries
Ex :
error :
{
"name" : "voice"
"email" : "voice@gmail.com"
}
corrected :
{
"name" : "voice" ,
"email" : "voice@gmail.com"
}
Solution : In the corrected solution put a comma.
No comments:
Post a Comment