The project I'm working on uses the JAXB reference implementation, i.e. classes are from the com.sun.xml.bind.v2.*
packages.
I have a class User
:
package com.example;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "user")
public class User {
private String email;
private String password;
public User() {
}
public User(String email, String password) {
this.email = email;
this.password = password;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
I want to use a JAXB marshaller to get a JSON representation of a User
object:
@Test
public void serializeObjectToJson() throws JsonProcessingException, JAXBException {
User user = new User("user@example.com", "mySecret");
JAXBContext jaxbContext = JAXBContext.newInstance(User.class);
Marshaller marshaller = jaxbContext.createMarshaller();
StringWriter sw = new StringWriter();
marshaller.marshal(user, sw);
assertEquals( "{\"email\":\"user@example.com\", \"password\":\"mySecret\"}", sw.toString() );
}
The marshalled data is in XML format, not JSON format. How can I instruct the JAXB reference implementation to output JSON?