GET 请求
@Get("http://localhost:8080/hello")
String simpleGet1();
@GetRequest("http://localhost:8080/hello")
String simpleGet2();
POST 请求
@Post("http://localhost:8080/hello")
String simplePost1();
@PostRequest("http://localhost:8080/hello")
String simplePost2();
PUT 请求
@Put("http://localhost:8080/hello")
String simplePut1();
@PutRequest("http://localhost:8080/hello")
String simplePut2();
HEAD 请求
@HeadRequest("http://localhost:8080/hello")
String simpleHead();
DELETE 请求
@Delete("http://localhost:8080/hello")
String simpleDelete1();
@DeleteRequest("http://localhost:8080/hello")
String simpl