In a REST server that I've written, I have several collection classes that wrap single items to be returned from my services:
@XmlAccessorType(XmlAccessType.NONE)
@XmlRootElement(name = "person_collection")
public final class PersonCollection {
@XmlElement(name = "person")
protected final List<Person> collection = new ArrayList<Person>();
public List<Person> getCollection() {
return collection;
}
}
I would like to refactor these to use generics so the the boilerplate code can be implemented in a superclass:
public abstract class AbstractCollection<T> {
protected final List<T> collection = new ArrayList<T>();
public List<T> getCollection() {
return collection;
}
}
@XmlAccessorType(XmlAccessType.NONE)
@XmlRootElement(name = "person_collection")
public final class PersonCollection extends AbstractCollection<Person> {}
How do I set the @XmlElement annotation on the superclass collection? I am thinking of something involving a @XmlJavaTypeAdapter and reflection, but was hoping for something simpler. How do I create the JAXBContext? BTW, I am using RestEasy 1.2.1 GA for the JAX-RS front-end.
UPDATE (for Andrew White): Here is code that demonstrates getting the Class object for the type parameter(s):
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.lang.reflect.TypeVariable;
import java.util.ArrayList;
import java.util.List;
public class TestReflection
extends AbstractCollection<String> {
public static void main(final String[] args) {
final TestReflection testReflection = new TestReflection();
final Class<?> cls = testReflection.getClass();
final Type[] types = ((ParameterizedType) cls.getGenericSuperclass()).getActualTypeArguments();
for (final Type t : types) {
final Class<?> typeVariable = (Class<?>) t;
System.out.println(typeVariable.getCanonicalName());
}
}
}
class AbstractCollection<T> {
protected List<T> collection = new ArrayList<T>();
}
Here is the output: java.lang.String.
nameattribute on@XmlElement, so you can just add@XmlElementtoAbstractCollection.collection, and let JAXB infer the element name. – skaffman Mar 23 '11 at 11:14javax.xml.bind.JAXBException: class com.example.Person nor any of its super class is known to this context– Ralph Mar 23 '11 at 12:19