Webservice_08_JAXB处理java和xml
发布时间:2020-12-17 00:12:22 所属栏目:安全 来源:网络整理
导读:非常感谢 孙浩 老师。 Coder.java package cn.lichen.bean;import javax.xml.bind.annotation.XmlRootElement;@XmlRootElementpublic class Coder {private int coderId;private String name;private String position;private Item item;public Coder() {//
非常感谢孙浩老师。 Coder.java package cn.lichen.bean; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class Coder { private int coderId; private String name; private String position; private Item item; public Coder() { // TODO Auto-generated constructor stub } public Coder(int coderId,String name,String position,Item item) { super(); this.coderId = coderId; this.name = name; this.position = position; this.item = item; } public int getCoderId() { return coderId; } public String getName() { return name; } public String getPosition() { return position; } public void setCoderId(int coderId) { this.coderId = coderId; } public void setName(String name) { this.name = name; } public void setPosition(String position) { this.position = position; } public Item getItem() { return item; } public void setItem(Item item) { this.item = item; } } ? Item.java package cn.lichen.bean; public class Item { private int itemId; private String name; public Item() { // TODO Auto-generated constructor stub } public Item(int itemId,String name) { super(); this.itemId = itemId; this.name = name; } public int getItemId() { return itemId; } public String getName() { return name; } public void setItemId(int itemId) { this.itemId = itemId; } public void setName(String name) { this.name = name; } }
|