• 大小: 7.19KB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


RESTful最佳实践之基于 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;
}

}

评论

共有 条评论