考虑以下C#代码:
[XmlRoot("RootElementName")]
public class GetReportStatusResponse
{
....
}
当序列化为XML时,此代码允许我将此类表示为
<RootElementName>
而不是<GetReportStatusResponse>
。Java是否具有等效功能?
最佳答案
是的,它称为jaxb:
@XmlRootElement(name="RootElementName")
public class GetReportStatusResponse {
//...
}