我正在使用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客户端中收到此错误。请注意,我只将类文件放在正确的目录中。
答案 0 :(得分:1)
您应在Accept=text/plain
中添加Content-Type=text/plain
和postman
标题。
或者您应该在@Produces
注释中设置标题的值。