How to marshal/unmarshal Java objects with private

2019-02-09 20:35发布

I know the basics of the JAXB API, but I am stuck with something I am trying to do, and I am not sure whether it is actually possible. Details are as follows:

I have a class called Book with 2 public instance variables of type String:

@XmlRootElement(name="book")
public class Book
{
    public String title;
    public String author;

    public Book() {
    }
}

I have a another class called Bookshop with 1 public instance variable of type ArrayList:

@XmlRootElement(name="bookshop")
public class Bookshop
{
    @XmlElementWrapper(name="book_list")
    @XmlElement(name="book")
    public ArrayList<Book> bookList;

    public Bookshop() {
        this.bookList = new ArrayList<>();
    }
}

Note: package declaration and imports are removed in order to save space.

These two classes work and the output XML I get is something like:

<bookshop>
    <book_list>
        <book>
            <title>Book 1</title>
            <author>Author 1</author>
        </book>
        <book>
            <title>Book 2</title>
            <author>Author 2</author>
        </book>
    </book_list>
</bookshop>

As far as I know, instance variables need to be declared public in order for its class to be serialisable. Or, instance variables can be declared private, but accessors and mutators are needed in that case.

I don't like declaring instance variables public; I like using accessors and mutators. Even then, I want some of my fields to be read-only, i.e., no mutator. But JAXB seems to require both accessors and mutators for each field you want to marshal/unmarshal. I was wondering if there is any way around this?

2条回答
Juvenile、少年°
2楼-- · 2019-02-09 21:05

You should keep your fields private in any case. You have 2 options binding to fields

1) annotate your fields with XmlElement or XmlAttribute annotation

@XmlRootElement(name="book")
public class Book {
    @XmlElement
    private String title;
    ...

2) annotate your class with @XmlAccessorType(XmlAccessType.FIELD)

    @XmlRootElement(name="book")
    @XmlAccessorType(XmlAccessType.FIELD)
    public class Book {
         private String title;
         ...
查看更多
该账号已被封号
3楼-- · 2019-02-09 21:13

JAXB will need either: - A public instance variable Or - A private instance variable with public mutators and accessors.

You will need mutators for marshalling and acessors for unmarshalling

查看更多
登录 后发表回答