邮递员显示错误:请求的资源不支持的格式

时间:2017-02-22 01:47:41

标签: java rest postman

我正在使用JAX-RS在Restful API中尝试我的第一个演示程序。

我使用Postman作为我的REST客户端。我尝试了这段代码,它应该在我的REST客户端中显示hello world。相反,我收到了如下所示的错误:

InjectDemo上课:

@Path("/injectdemo")
@Consumes(MediaType.TEXT_PLAIN)
@Produces(MediaType.TEXT_PLAIN)
public class InjectDemo {

    @GET
    @Path("/annotations")
    public String getParametersUsingAnnotation(){
        return "hello world";
    }
}

我在Postman REST客户端中收到此错误。请注意,我只将类文件放在正确的目录中。

enter image description here

1 个答案:

答案 0 :(得分:1)

您应在Accept=text/plain中添加Content-Type=text/plainpostman 标题

或者您应该在@Produces注释中设置标题的值。