0

我是 Jersey Rest Framework 的新手,我写了一个简单的演示来学习这项技能。这是我的问题:我试图用这个 URL 访问我的 helloworld ---

http://localhost:8080/PayInterface/query/helloworld

但没有用。你能告诉我我做错了什么吗?我写了一个类:

@Component
//Declaring that all it will handle all requests starting by /TestCaseDto
@Path("query")
public class QueryApi {
    @Path("/helloworld")
    @GET
    @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
    public String test(){
        return new String("Hello World!!!");
    }
}

和我

4

2 回答 2

1

关于这个“dint work”的更多细节
对于初学者来说会很好 - 尝试像这样更改类名上方的路径

@Path("/query")
于 2012-09-04T03:26:02.470 回答
0

我想在这里你返回字符串。所以你不能将生产类型作为xml,试试这个

@Stateless
@Path("query")
public class QueryApi {
   @Path("/helloworld")
   @GET
   @Produces({MediaType.APPLICATION_JSON})
   public String test(){
     return new String("Hello World!!!");
   }
}
于 2012-09-04T03:58:49.730 回答