I have an Android app which uses Jackson parser for JSON parsing. After I've ran Proguard on the classes I started to get null values on each and every member of the de-serialized classes. For example, if I have a object:

public class Service{
    private String name;
    private String version;
    ... getters, setters and stuff
}

and I receive a JSON with list of those objects:

[{"name":"service1","version":"1.1"},{"name":"service2","version":"1.0"}]

then I do:

objectMapper.readValue(jsonString,new TypeReference<List<Service>>() {})

what I get is a list with 2 Service objects where all members are null.

Any ideas?

Thanks

UPDATE

I've missed ProGuard warnings:

org.codehaus.jackson.map.deser.EnumSetDeserializer: can't find referenced method 'EnumDeserializer(org.codehaus.jackson.map.deser.EnumResolver)' in class     org.codehaus.jackson.map.deser.EnumDeserializer
org.codehaus.jackson.map.deser.impl.StringCollectionDeserializer: can't find referenced method 'org.codehaus.jackson.map.JsonMappingException instantiationException(java.lang.Class,java.lang.Exception)' in class org.codehaus.jackson.map.DeserializationContext

fixed those with:

-dontskipnonpubliclibraryclassmembers

and that did it.

Alex

P.S.

Here's the proguard.conf, all the libraries are added by Maven plugin

-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class * extends android.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference

-dontoptimize
-dontnote
-dontskipnonpubliclibraryclasses
-printmapping map.txt
-printseeds seed.txt
-ignorewarnings

-keepclassmembers class * {  @com.google.api.client.util.Key <fields>;}

-keepattributes Signature,RuntimeVisibleAnnotations,AnnotationDefault
-keepattributes *Annotation*

-keepclasseswithmembers public class * {    public static void main(java.lang.String[]);}

-keepclassmembers public class com.anydo.client.model** { * ; }
-keepclassmembers public class com.anydo.common.dto** { * ;}
-keep class com.j256.** {*;}

-dontskipnonpubliclibraryclassmembers


-keepclasseswithmembernames class * {
    native <methods>;
}

-keepclasseswithmembernames class * {
    public <init>(android.content.Context, android.util.AttributeSet);
}

-keepclasseswithmembernames class * {
    public <init>(android.content.Context, android.util.AttributeSet, int);
}

-keepclassmembers enum * {
    public static **[] values();
    public static ** valueOf(java.lang.String);
}

-keep class * implements android.os.Parcelable {
  public static final android.os.Parcelable$Creator *;
}

-keepclassmembers class **.R$* {
    public static <fields>;
}

#ACRA
-keep class org.acra.ACRA {
        *;
}

# keep this around for some enums that ACRA needs
-keep class org.acra.ReportingInteractionMode { *; }
# keep this otherwise it is removed by ProGuard
-keep public class org.acra.ErrorReporter
{
public void addCustomData(java.lang.String,java.lang.String);
}

# keep this otherwise it is removed by ProGuard
-keep public class org.acra.ErrorReporter
{
public org.acra.ErrorReporter$ReportsSenderWorker handleSilentException(java.lang.Throwable);
}
link|improve this question

Do i suggest easy way to Parse JSON? What response do you want to parse actually? – Paresh Mayani Nov 6 '11 at 15:52
sorry, I don't understand the question – AlexV Nov 6 '11 at 16:40
Which Jackson jars are you using? Are they all in the libs directory? What does your ProGuard configuration look like? – Eric Lafortune Nov 7 '11 at 23:06
I've recently upgraded to 1.9.2. I'll add ProGuard configuration to the question body. – AlexV Nov 8 '11 at 12:44
feedback

2 Answers

up vote 1 down vote accepted

It looks like you're combining different versions of the jackson-mapper jar in a single project.

jackson-mapper-asl-1.7.9.jar contains

  • org.codehaus.jackson.map.deser.EnumSetDeserializer
  • org.codehaus.jackson.map.deser.EnumDeserializer with constructor EnumDeserializer(org.codehaus.jackson.map.deser.EnumResolver)

jackson-mapper-asl-1.9.2.jar contains

  • org.codehaus.jackson.map.deser.std.EnumSetDeserializer
  • org.codehaus.jackson.map.deser.EnumDeserializer with constructor EnumDeserializer(org.codehaus.jackson.map.util.EnumResolver)

Notice the different packages for EnumSetDeserializer and the different constructors for EnumDeserializer. ProGuard can't resolve the reference of the 1.7.9 EnumSetDeserializer to the constructor of the 1.9.2 EnumDeserializer on the same class path, and it rightly warns about it.

link|improve this answer
feedback

Thank you for the solution -- I have heard of a few issues with ProGuard + Jackson, so while it'd be great to have automatic solution, it's good to at least have config settings to resolve issues.

link|improve this answer
glad it helped, cause I haven't found anything even close on Google – AlexV Nov 7 '11 at 9:09
Yeah. And it's odd... looking at methods in question, I have no idea why ProGuard had issues. Almost seems like a bug in its handling of things. – StaxMan Nov 7 '11 at 18:55
feedback

Your Answer

 
or
required, but never shown

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