我创建了一个简单的GrizzlyHttpServerFactory.createHttpServer服务,并尝试发出@GET操作,客户端将传入参数,但是我收到错误:
我仔细阅读了几个例子,一切都很好。一切正常,只要我不尝试传递参数。这是我到目前为止的代码。
在main()
中final ResourceConfig resourceConfig = new ResourceConfig(TestServerResource.class);
final HttpServer server = GrizzlyHttpServerFactory.createHttpServer(URI.create("http://localhost:8081/base/"), resourceConfig);
在资源类中:
@Path("TestServer")
public class TestServerResource
{
public static final String CLICHED_MESSAGE = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<note>\r\n<to>Tove</to>\r\n<from>Jani</from>\r\n<heading>Reminder</heading>\r\n<body>Don't forget me this weekend!</body>\r\n</note>\r\n\r\n";
public static final String DO_MESSAGE = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<DoTask>\r\n\t<Response>%s</Response>\r\n</DoTask>\r\n\r\n";
@GET
@Path("getHello")
@Produces(MediaType.APPLICATION_XML)
public String getHello()
{
return CLICHED_MESSAGE;
}
@GET
@Path("testGet3")
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces(MediaType.APPLICATION_XML)
public String testGet3(MultivaluedMap<String, String> formParams)
{
// Get the parameters.
String argTitle = formParams.getFirst("title");
String argAuthor = formParams.getFirst("author");
// Create the XML response.
String xmlResponse = String.format(DO_MESSAGE, String.format("Book Title %s with author %s", argTitle, argAuthor));
return xmlResponse;
}
}
在我的CentOS 7盒子上运行服务后。这是终端命令。
作品(无参数):
[test@Turbo Downloads]$ curl -H "Accept: application/xml" "http://localhost:8081/base/TestServer/getHello"
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
参数不起作用:
[test@Turbo Downloads]$ curl -H "Accept: application/xml" "http://localhost:8081/base/TestServer/testGet3?title=smurfs&author=Gargamel"
<html><head><title>Grizzly 2.3.8</title><style><!--div.header {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#003300;font-size:22px;-moz-border-radius-topleft: 10px;border-top-left-radius: 10px;-moz-border-radius-topright: 10px;border-top-right-radius: 10px;padding-left: 5px}div.body {font-family:Tahoma,Arial,sans-serif;color:black;background-color:#FFFFCC;font-size:16px;padding-top:10px;padding-bottom:10px;padding-left:10px}div.footer {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#666633;font-size:14px;-moz-border-radius-bottomleft: 10px;border-bottom-left-radius: 10px;-moz-border-radius-bottomright: 10px;border-bottom-right-radius: 10px;padding-left: 5px}BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;}B {font-family:Tahoma,Arial,sans-serif;color:black;}A {color : black;}HR {color : #999966;}--></style> </head><body><div class="header">Request failed.</div><div class="body">Request failed.</div><div class="footer">Grizzly 2.3.8</div></body></html>[test@Turbo Downloads]$
在传递参数时,我确实将url包装在引号中,因此这不是问题所在。想法?
以下是我仔细阅读的一些资源:
在不使用参数的情况下,使用-H指定要使用-H卷曲的标头似乎无关紧要,因为我尝试了两种方式并且我得到了正确的XML。我不必指定-X选项,因为GET是默认操作,这是我指定的。单引号和双引号会产生相同的结果。
我尝试实现GrizzlyWebContainerFactory,如24518607中所述,但我找不到ant来找到那个jar,即使Eclipse很开心。我不想被追踪,所以我保持专注。
思想?
答案 0 :(得分:1)
首先,您的资源方法期望请求正文中的数据,因为它应该更改为@POST
,然后在curl
命令中使用
curl -X POST "http://localhost:8081/base/TestServer/testGet3"
-d "title=smurfs" -d "author=Gargamel"
如果您想使用GET将数据保存在URL中,那么您应该将资源方法更改为以下
@GET
@Path("testGet3")
@Produces(MediaType.APPLICATION_XML)
public String testGet3(@Context UriInfo uriInfo)
{
MultivaluedMap<String, String> params
= uriInfo.getQueryParameters();
}
或者,您可以使用@QueryParam
public String testGet3(@QueryParam("title") String title,
@QueryParam("author") String author)
顺便说一句,对于这样的问题(没有有用的错误消息),我通常采取的第一步是创建一个我注册的ExceptionMapper<Throwable>
。通常有一些例外被泽西吞没,它被包裹在泽西岛的一些例外中,导致无用的500而没有真正问题的消息。使用ExceptionMapper
,在大多数情况下,它应该看到真正的异常,并且至少可以打印堆栈跟踪。有关ExceptionMapper