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

  • Home
  • SEARCH
  • 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 207101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:42:20+00:00 2026-05-11T17:42:20+00:00

I have several complex data structures like Map< A, Set< B > > Set<

  • 0

I have several complex data structures like

Map< A, Set< B > >
Set< Map< A, B > >
Set< Map< A, Set< B > > >
Map< A, Map< B, Set< C > > >
and so on (more complex data structures)

Note: In my case it doesn’t really matter if I use Set or List.

Now I know that JAXB let me define XmlAdapter‘s, that’s fine,
but I don’t want to define an XmlAdapter for every of the given data structures
(it would be just too much copy-and-paste code).

I tried to achieve my goal by declaring two generalizing XmlAdapters:

  • one for Map: MapAdapter<K,V>
  • one for Set: SetAdapter<V>

The problem:
JAXB complains as following:

javax.xml.bind.JAXBException:
class java.util.Collections$UnmodifiableMap nor any of its
  super class is known to this context.

Here is my adapter class:

import java.util.*;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.*;

public class Adapters {

public final static class MapAdapter<K, V>
        extends XmlAdapter<MapAdapter.Adapter<K, V>, Map<K, V>> {

    @XmlType
    @XmlRootElement
    public final static class Adapter<K, V> {

        @XmlElement
        protected List<MyEntry<K, V>> key = new LinkedList<MyEntry<K, V>>();

        private Adapter() {
        }

        public Adapter(Map<K, V> original) {
            for (Map.Entry<K, V> entry : original.entrySet()) {
                key.add(new MyEntry<K, V>(entry));
            }
        }

    }

    @XmlType
    @XmlRootElement
    public final static class MyEntry<K, V> {

        @XmlElement
        protected K key;

        @XmlElement
        protected V value;

        private MyEntry() {
        }

        public MyEntry(Map.Entry<K, V> original) {
            key = original.getKey();
            value = original.getValue();
        }

    }

    @Override
    public Adapter<K, V> marshal(Map<K, V> obj) {
        return new Adapter<K, V>(obj);
    }

    @Override
    public Map<K, V> unmarshal(Adapter<K, V> obj) {
        throw new UnsupportedOperationException("unmarshalling is never performed");
    }

}

}

Here is my JUnit test case:

import java.io.*;
import java.util.*;
import javax.xml.bind.*;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.*;
import org.junit.*;
import static java.lang.System.*;

public class SomeTest {

@Test
public void _map2()
        throws Exception {

    Map<String, Map<String, String>> dataStructure =
            new HashMap<String, Map<String, String>>();

    Map<String, String> inner1 = new HashMap<String, String>();
    Map<String, String> inner2 = new HashMap<String, String>();

    dataStructure.put("a", inner1);
    dataStructure.put("b", inner1);

    inner1.put("a1", "1");
    inner1.put("a2", "2");
    inner2.put("b1", "1");
    inner2.put("b2", "2");

    JAXBContext context = JAXBContext.newInstance(Adapters.XMap.class,
            Adapters.XCount.class, Adapters.XEntry.class);

    Marshaller marshaller = context.createMarshaller();
    marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
    marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);

    marshaller.setAdapter(new Adapters.MapAdapter());

    StringWriter sw = new StringWriter();

    marshaller.marshal(dataStructure, sw);
    out.println(sw.toString());
}

}
  • 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-11T17:42:21+00:00Added an answer on May 11, 2026 at 5:42 pm

    I’ve solved the problem without XmlAdapter’s.

    I’ve written JAXB-annotated objects for Map, Map.Entry and Collection.
    The main idea is inside the method xmlizeNestedStructure(…):

    Take a look at the code:

    public final class Adapters {
    
    private Adapters() {
    }
    
    public static Class<?>[] getXmlClasses() {
        return new Class<?>[]{
                    XMap.class, XEntry.class, XCollection.class, XCount.class
                };
    }
    
    public static Object xmlizeNestedStructure(Object input) {
        if (input instanceof Map<?, ?>) {
            return xmlizeNestedMap((Map<?, ?>) input);
        }
        if (input instanceof Collection<?>) {
            return xmlizeNestedCollection((Collection<?>) input);
        }
    
        return input; // non-special object, return as is
    }
    
    public static XMap<?, ?> xmlizeNestedMap(Map<?, ?> input) {
        XMap<Object, Object> ret = new XMap<Object, Object>();
    
        for (Map.Entry<?, ?> e : input.entrySet()) {
            ret.add(xmlizeNestedStructure(e.getKey()),
                    xmlizeNestedStructure(e.getValue()));
        }
    
        return ret;
    }
    
    public static XCollection<?> xmlizeNestedCollection(Collection<?> input) {
        XCollection<Object> ret = new XCollection<Object>();
    
        for (Object entry : input) {
            ret.add(xmlizeNestedStructure(entry));
        }
    
        return ret;
    }
    
    @XmlType
    @XmlRootElement
    public final static class XMap<K, V> {
    
        @XmlElementWrapper(name = "map")
        @XmlElement(name = "entry")
        private List<XEntry<K, V>> list = new LinkedList<XEntry<K, V>>();
    
        public XMap() {
        }
    
        public void add(K key, V value) {
            list.add(new XEntry<K, V>(key, value));
        }
    
    }
    
    @XmlType
    @XmlRootElement
    public final static class XEntry<K, V> {
    
        @XmlElement
        private K key;
    
        @XmlElement
        private V value;
    
        private XEntry() {
        }
    
        public XEntry(K key, V value) {
            this.key = key;
            this.value = value;
        }
    
    }
    
    @XmlType
    @XmlRootElement
    public final static class XCollection<V> {
    
        @XmlElementWrapper(name = "list")
        @XmlElement(name = "entry")
        private List<V> list = new LinkedList<V>();
    
        public XCollection() {
        }
    
        public void add(V obj) {
            list.add(obj);
        }
    
    }
    
    }
    

    It works!

    Let’s look at a demo output:

    <xMap>
        <map>
            <entry>
                <key xsi:type="xCount" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                    <count>1</count>
                    <content xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">a</content>
                </key>
                <value xsi:type="xCollection" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                    <list>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">a1</entry>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">a2</entry>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">a3</entry>
                    </list>
                </value>
            </entry>
            <entry>
                <key xsi:type="xCount" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                    <count>2</count>
                    <content xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">b</content>
                </key>
                <value xsi:type="xCollection" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                    <list>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">b1</entry>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">b3</entry>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">b2</entry>
                    </list>
                </value>
            </entry>
            <entry>
                <key xsi:type="xCount" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                    <count>3</count>
                    <content xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">c</content>
                </key>
                <value xsi:type="xCollection" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                    <list>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">c1</entry>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">c2</entry>
                        <entry xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">c3</entry>
                    </list>
                </value>
            </entry>
        </map>
    </xMap>
    

    Sorry, the demo output uses also a data structure called “count”
    which is not mentioned in the Adapter’s source code.

    BTW: does anyone know how to remove all these annoying
    and (in my case) unnecessary xsi:type attributes?

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

Sidebar

Ask A Question

Stats

  • Questions 161k
  • Answers 162k
  • 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 Try this. SELECT a.ID, (SELECT count(*) FROM posts WHERE a.ID… May 12, 2026 at 11:54 am
  • Editorial Team
    Editorial Team added an answer The term your looking for is "url rewriting" or "routing".… May 12, 2026 at 11:54 am
  • Editorial Team
    Editorial Team added an answer I think you're looking for Test::NoWarnings. May 12, 2026 at 11:54 am

Related Questions

Briefly: Does anyone know of a GUI for gdb that brings it on par
I have an app that shows store sales. It is a multi-dimensional array, so
It seems that the decision to make your objects fully cognizant of their roles
Is there anyway to have a sort of virtual static member in C++? For

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.