71.2 编写XML REST服务
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
</dependency><dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
</dependency>@XmlRootElement
public class MyThing {
private String name;
// .. getters and setters
}Last updated
Was this helpful?