This commit is contained in:
Redkale
2017-05-19 11:26:21 +08:00
parent 01ea7f07f5
commit 8bbee0aff8
3 changed files with 65 additions and 4 deletions

View File

@@ -38,6 +38,9 @@ public class HelloEntity {
@RestAddress
private String clientaddr;
@RestURI
private String uri;
public HelloEntity() {
}
@@ -134,6 +137,14 @@ public class HelloEntity {
this.uploads = uploads;
}
public String getUri() {
return uri;
}
public void setUri(String uri) {
this.uri = uri;
}
@Override
public String toString() {
return JsonFactory.root().getConvert().convertTo(this);