假设我分别有以下 XML 和 Java 代码:
<foo>
My text content
</foo>
@XmlRootElement( name="foo" )
public static class Foo
{
// This is where I want to see "My text content" stored
private String text;
// getters and setters
}
当我尝试编组 XML 时,我的Foo
实例没有foo
使用给定 XML 中元素的内部文本中的值填充其文本属性。我该如何解决这个问题?