3

I having problem marshaling an iterator of objects using JAXB

User class:

@XmlRootElement(name="User")
public class User{
    private Long id;
    private String name,mailid;
    private boolean isActive;
    public Long getId() {

        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getMailid() {
        return mailid;
    }
    public void setMailid(String mailid) {
        this.mailid = mailid;
    }
    public boolean isActive() {
        return isActive;
    }
    public void setActive(boolean isActive) {
        this.isActive = isActive;
    }

}

Function which return's an Iterator of User :

public static Iterator<User> mapDoToUserObject(DataObject dao){

    final Iterator<Row> userRow = getRow(dao,USER.TABLE);


    return new Iterator<User>() {
        @Override
        public boolean hasNext() {
            return userRow.hasNext();
        }

        @Override
        public User next() {
            Row user = userRow.next();
            User user = new User();
            user.setId((Long)user.get(USER.USER_ID));
            user.setName((String) user.get(USER.FIRST_NAME));
            user.setMailid((String)user.get(USER.EMAIL_ID));
            return user;
        }

        @Override
        public void remove() {
            throw new UnsupportedOperationException("Remove not supported");

        }
    };  
}

How to marshal an iterator of Users using JAXB ?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Emil
  • 13,577
  • 18
  • 69
  • 108

1 Answers1

4

You'll either need to drain the iterator into a collection and then marshal that (which is the easiest solution), or else use JAXB's incremental marshalling feature, which means iterating over the iterator yourself and marshalling the individual objects. For a description on how to do that, see Can JAXB Incrementally Marshall An Object?

Community
  • 1
  • 1
skaffman
  • 398,947
  • 96
  • 818
  • 769