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 638549
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T20:44:40+00:00 2026-05-13T20:44:40+00:00

When unmarshalling using jaxb, I have in class A something along: public class A

  • 0

When unmarshalling using jaxb, I have in class A something along:

public class A {
    @XmlElements( { //
    @XmlElement(name = "g", type = A.class),
        @XmlElement(name = "x", type = X.class), 
        @XmlElement(name = "y", type = Y.class),        
    })
    List<XXX> children;
}

That is, I have a list, children, consisting of X:s and Y:s

Now for my question: I would like to subclass A, and I would like to
redefine the ‘XmlElements’ list and bind it to the same variable, ‘children’,
like:

public class B extends A {
    @XmlElements( { //
    @XmlElement(name = "g", type = B.class),
        @XmlElement(name = "x", type = X.class), 
        @XmlElement(name = "y", type = Y.class), 
        @XmlElement(name = "z", type = Z.class),        
    })
    List<XXX> children;
}

The issues with the above are twofold:

  1. I create a new variable children, I would like to refer to the variable in class A.

  2. I would like to avoid respecifying the ‘x’ and ‘y’ since they are already specified in ‘A’.

Is there some good pattern to achieve this?

Or some pointers/articles or other info for how to build something like this?

  • 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-05-13T20:44:41+00:00Added an answer on May 13, 2026 at 8:44 pm

    There’s no avoiding the re-declaration of the annotation, but you can move the annotation from the field on to the getter method, as long as you use the @XmlAccessorType annotation to tell JAXB to look for public getter methods rather than fields.

    So you could override getChildren() in class B wit the new annotation set:

    @XmlAccessorType(PROPERTY)
    public class A {
        private List<XXX> children;
    
        @XmlElements( { //
        @XmlElement(name = "g", type = A.class),
            @XmlElement(name = "x", type = X.class), 
            @XmlElement(name = "y", type = Y.class),        
        })
        public List<XXX> getChildren() {
           return children;
        }
    
        public void setChildren(List<XXX> children) {
           this.children = children;
        }
    }
    
    @XmlAccessorType(PROPERTY)
    public class B extends A {
        @XmlElements( { //
        @XmlElement(name = "g", type = B.class),
            @XmlElement(name = "x", type = X.class), 
            @XmlElement(name = "y", type = Y.class), 
            @XmlElement(name = "z", type = Z.class),        
        })
        public List<XXX> getChildren() {
           return super.getChildren();
        }
    }
    

    What I’m not sure about is how JAXB will handle the overriden getChildren() method. Hopefully it’ll take the annotations from B, but it’s possible it’ll get confused.

    Try it and see.

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

Sidebar

Ask A Question

Stats

  • Questions 383k
  • Answers 384k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer If your host lets you, cron jobs are the best… May 14, 2026 at 11:00 pm
  • Editorial Team
    Editorial Team added an answer go to Home » Administer » Site building » Menus… May 14, 2026 at 11:00 pm
  • Editorial Team
    Editorial Team added an answer Declaring static final public fields is usually the hallmark of… May 14, 2026 at 11:00 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.