資源簡(jiǎn)介
RESTful最佳實(shí)踐之基于 jersey 的增刪改查
代碼片段和文件信息
package?sample.hello.bean;
import?javax.xml.bind.annotation.xmlRootElement;
@xmlRootElement
public?class?Address?{
private?String?city;
private?String?street;
public?Address()?{
}
public?Address(String?city?String?street)?{
this.city?=?city;
this.street?=?street;
}
public?String?getCity()?{
return?city;
}
public?void?setCity(String?city)?{
this.city?=?city;
}
public?String?getStreet()?{
return?street;
}
public?void?setStreet(String?street)?{
this.street?=?street;
}
}
- 上一篇:二維元胞自動(dòng)機(jī)python
- 下一篇:Winpcap中文文檔
評(píng)論
共有 條評(píng)論