我正在使用 JAXB 将 java 对象编组为 XML。我需要创建一些类似的东西
<link rel="self" href="test" />
如何做到这一点?我应该使用什么注释。
任何帮助将不胜感激
Java 类
public class Item {
private String title;
private int price;
private String productLink;
private String rel;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}
@XmlPath("link/@href")
public String getProductLink() {
return productLink;
}
public void setProductLink(String productLink) {
this.productLink = productLink;
}