我有一个班级:
public class SomeClass {
public String a = "tag"
@JacksonXmlProperty(isAttribute = true)
public String b = "attribute"
}
我需要将变量设置为变量的属性:ba
<SomeClass>
<a b="attribute">tag</a>
</SomeClass>
我试过了,但它只将我的属性映射到根标签:@JacksonXmlProperty(isAttribute = true)
<SomeClass b="attribute">
<a>tag</a>
</SomeClass>
有没有办法用注释来处理这个问题?
慕妹3242003
相关分类