我有如下的网络服务。任何正文请告诉我调用getUserDetails();
的Url是什么....:// localhost:8080 / Jersey-Rest / rest / hellow / 在hellow /....
之后我想要网址@Path("/hellow")
public class HelloWorldService {
@GET
@Path("/{name1}/{name2}/")
public Response getUserDetails(@PathParam("name1") String name1,@PathParam("name2") String name2){
String output = "User info .. "+name1+name2 ;
return Response.status(200).entity(output).build();
}
谢谢
答案 0 :(得分:0)
....:// localhost:8080 / Jersey-Rest / rest / hellow / joe / bob /例如