Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8925713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:46:23+00:00 2026-06-15T07:46:23+00:00

Is there an option (except writing custom serializer/deserializer) in GSON library to NOT serialize/deserialize

  • 0

Is there an option (except writing custom serializer/deserializer) in GSON library to NOT serialize/deserialize beyond some level of extended classes.

For example see the following usecase

class FirstClass {
    int firstVariable;
}

class SecondClass extends FirstClass {
    int secondVariable;
}

class ThirdClass extends SecondClass {
    int thirdVariable;
}

And now when using fromJson and toJson I would like to only serialize/deserialize first two classes in hierarchy – ThirdClass and SecondClass. Which means it would ignore whole FirstClass (and firstVariable in it) because that’s already at level 3.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T07:46:24+00:00Added an answer on June 15, 2026 at 7:46 am

    You cannot generically exclude the TopLevel Class, what you could do is use an ExclusionStrategy:

      private static final Gson GSON = new GsonBuilder().addSerializationExclusionStrategy(new ExclusionStrategy() {
        @Override
        public boolean shouldSkipField(FieldAttributes f) {
            return f.getDeclaringClass().equals(FirstClass.class);
        }
    
        @Override
        public boolean shouldSkipClass(Class<?> clazz) {
            return false;
        }
      }).create();
    

    You can also add a ExclusionStrategy to Deserialization.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using django comments framework http://docs.djangoproject.com/en/dev/ref/contrib/comments/ Not sure is there option, to make all comments
Is there any other option to AllowOverride all except edit /etc/apache2/sites-available/default , means I
Are there any Open Source online IDE's except for Bespin? If found some online
Is there any option to tell gs to convert strokes to fills? Something similar
Is there an option to show the full command when using an alias? Example:
Is there an option for the curl command to show only a percentage output
is there an option how to disable that #if, #endif and other directives are
Is there any option to clear the console screen in Java as clrscr() in
Is there an option to enable the drop down menu that appears when coding
Is there any option to call msi file from CreateProcess in c language in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.