Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このxml構造をアーカイブするためにクラスに注釈を付けるにはどうすればよいですか?
<elementTag attribute="false">Testvalue</elementTag>
elementTagを別のクラスに入れようとしましたが、「Testvalue」は私の例のようにインラインではありません。
ありがとう、よろしく、m
@XmlValue注釈を使用できます。
@XmlValue
@XmlRootElement(name="elementTag") public class Root { @XmlAttribute public String getAttribute { return attribute; } @XmlValue public String getValue() { return value; } }