我想发送 GET-Requests,我的 REST-API 会回答这些请求。我的java 程序目前支持text/plain
、text/html
和使用 JAX-RS 参考实现 Jersey。text/xml
application/json
为了测试不同的媒体类型,我使用了 firefox 插件RESTClient
。要更改媒体类型,我将使用name=Content-Type
和 例如调整标题value=text/xml
。
text/html
但无论Content-Type
我选择哪个,RESTClient 总是返回。现在修改返回结果类型的唯一方法是取消注释我的代码中的 html 部分。然后text/plain
将是返回的媒体类型,但Content-Type
RESTClient 的参数仍然被忽略。
我正在使用最新版本的 RESTClient,现在是 2.0.3。你能帮我么?
这是我的 Java 代码:
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
//Sets the path to base URL + /hello
@Path("/hello")
public class restProvider {
// This method is called if TEXT_PLAIN is request
@GET
@Produces(MediaType.TEXT_PLAIN)
public String sayPlainTextHello() {
return "Hello little World";
}
// This method is called if XML is request
@GET
@Produces(MediaType.TEXT_XML)
public String sayXMLHello() {
return "<?xml version=\"1.0\"?>" + "<hello> Hello little World" + "</hello>";
}
// This method is called if HTML is request
// Uncommenting the following 6 lines will result in returning text/plain
@GET
@Produces(MediaType.TEXT_HTML)
public String sayHtmlHello() {
return "<html> " + "<title>" + "Hello World" + "</title>"
+ "<body><h1>" + "Hello little World" + "</h1></body>" + "</html> ";
}
// This method is called if JSON is requested
@GET
@Produces(MediaType.APPLICATION_JSON)
public String getJson(){
Gson gsonObject = new Gson();
return gsonObject.toJson(helloClass);
}
}