それぞれ次の 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 をマーシャリングしようとしたときに、インスタンスの text プロパティに、指定された XML の要素Foo
の内部テキストからの値が入力されません。foo
これを解決するにはどうすればよいですか?