- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我开始学习 jersey for development restful web services。
正如我在大多数示例中注意到的那样使用了以下注释:
@Consumes
定义输入参数的格式
@Produces
定义输出参数的格式
但在实际代码中,我看到了如下所示的方法:
@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Path("/login")
public Response login(@FormParam("login") final String username, @FormParam("password") final String password){...}
我看到这个方法使用了 POST
HTTP 方法。参数 userName
和 password
将具有根据 @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
的形式。我看到了执行此方法的 URL。
但是我不明白这个方法返回的是什么。哪种格式?
最佳答案
我只是想澄清一下,“如果未指定,Jersey 默认会生成“application/octet-stream”” 并不完全正确。实际上在幕后发生了很多复杂的事情,这决定了最终的 Content-Type
。 .正如规范中所述:
Note that the above (actually below :-) renders a response with a default media type of
application/octetstream
when a concrete type cannot be determined.
但是,正如我所说,有一种复杂的算法可以确定这种“具体类型”。我测试过的案例很少会返回 application/octet-stream
.它如下(这直接来自规范。您可以尝试制作它的正面或反面,但它不适合外行):
3.8 Determining the MediaType of Responses
In many cases it is not possible to statically determine the media type of a response. The following algorithm is used to determine the response media type, Mselected, at run time:
If the method returns an instance of
Response
whose metadata includes the response media type (Mspecified) then set Mselected = Mspecified, finish.Gather the set of producible media types P:
- If the method is annotated with
@Produces
, set P = {V(method)} where V (t
) represents the values of@Produces
on the specified targett
.- Else if the class is annotated with
@Produces
, set P = {V (class)}.- Else set P = {V (writers)} where '
writers
' is the set ofMessageBodyWriter
that support the class of the returned entity object.If P = {}, set P = {
'*/*'
}Obtain the acceptable media types A. If A = {}, set A = {
'*/*'
}Set M = {}. For each member of A;
a
:
- For each member of P;
p
:
- If a is compatible with
p
, add S(a
;p
) to M, where the functionS
returns the most specific media type of the pair with the q-value ofa
and server-side qs-value ofp
.If M = {} then generate a
NotAcceptableException
(406 status) and no entity. The exception MUST be processed as described in Section 3.3.4. Finish.Sort M in descending order, with a primary key of specificity
(n/m > n/* > */*)
, a secondary key of q-value and a tertiary key of qs-value.For each member of M;
m
:
- If
m
is a concrete type, set Mselected =m
, finish.If M contains
'*/*'
or'application/*
', set Mselected ='application/octet-stream'
, finish.Generate a
NotAcceptableException
(406 status) and no entity. The exception MUST be processed as described in Section 3.3.4. Finish.
你可以看到它并不像说它总是默认为 application/octet-stream
那样简单.简单的例子
@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public Response createCustomer(@FormParam("id") int id,
@FormParam("name") String name) {
return Response.ok("OK I GOT IT").build();
}
以上将返回 Content-Type: text/plain
假设您创建了一个 Customer
对象并返回它
@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public Response createCustomer(@FormParam("id") int id,
@FormParam("name") String name) {
Customer customer = new Customer(id, name);
return Response.ok(customer).build();
}
根据我的测试,它将返回 Content-Type: application/xml
是的,正文内容将 是 xml。
现在如果我们发送带有 Accept
的请求application/json
的标题,我们将得到 Content-Type: application/json
的响应头,因为是的,正文内容将是 json。这就是内容协商发挥作用的地方
如果我们只是用 201 Created
回应,这在 POST
中很常见/创建请求
@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public Response createCustomer(@FormParam("id") int id,
@FormParam("name") String name) {
return Response.created(someNewUri).build();
}
会有没有 Content-Type
响应 header ,因为没有内容。
现在上面的一些例子不是很好的 REST 主要例子,但它表明,如果我们没有用 @Produces
显式地设置它,那么很多东西都会用于确定媒体类型。 .你必须考虑,响应的主体,可用 MessageBodyWriters
, 你有 Content Negotiation考虑因素,以及规范中那个庞然大物中的任何其他内容。 (注意:我将“内容协商”链接加粗了,因为这是一个您在使用 REST 时应该真正熟悉的概念。它实际上在 JAX-RS/Jersey 中发挥了重要作用。
因此,您问题的真正答案是视情况而定。但希望您从这篇文章中获得了一些额外的知识:-)
关于java - 如果缺少@Produces 注释, Jersey 服务会返回什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27544242/
我正在尝试在 map 上绘制一些疾病事件数据的位置。 我用它来导入数据: ByTown% addProviderTiles("CartoDB.Positron")%>% addPolygons
我有一个文件调用 find.js,我使用 node find.js 运行,我的节点是版本 10 我不知道为什么我无法使用 async await。 const axios = require("axi
我有一个项目作为引用添加到 System.Web。 但是,它似乎无法获取 HttpContext。这样做: Imports System.Web _ApplicationBase = HttpCont
在互联网上找到这段代码,出于某种原因它缺少 while 循环逻辑“while(i....)”,虽然我找到了 PigLatin* 问题的其他可行解决方案,但我真的很想了解这个正在工作。 *PigLati
我工作了一整天来运行 Xampp 并在其上安装 TYPO3。现在我登录到后端,但没有显示许多管理模块,例如模板、访问等。 - 一定是我做错了什么,但我不知道。 these are the module
你好 我有编译这个问题 \begin{equation} J = \sum_{j=1}^{C} \end{equation} 我不断收到错误 missing $ inserted 这很奇怪,因
我正在尝试使用 SQLite CLI,但无法获得 generate_series功能来工作。我可以按照文档中的建议使用递归 CTE 对其进行模拟,但我似乎无法获得该链接中的任何示例。这是我的 sess
我目前正在开发我想要的软件,而软件正在安装,它可以在后台为软件创建 native 图像。 我正在考虑使用 NGEN 并将进程优先级设置为低,因为我不希望它消耗 100% CPU。但是我发现我的计算机上
我想使用 Xcodes Instruments 进行 UI 自动化测试。但似乎缺少“自动化”。我怎样才能添加这个? 最佳答案 如果您想使用自动化仪器,请使用 Xcode 7.3。 Apple 在 Xc
我目前在 JS 开发中迈出了一小步,并编写了以下链接添加器: const button = document.getElementById('button') const listdiv = docu
此代码有什么问题: NSError *error = nil; [SFHFKeychainUtils deleteItemForUsername:@"IAPNoob01" andServiceName
出于某种原因,在安装和配置(我认为)一切之后,com.adobe.utils.AGALMiniAssembler 不见了,其他一切正常。 我认为我已尽一切努力让孵化器正常工作,但显然我错过了一步。 如
我有一个名为 new 的方法。调用 new 时,我传递了一个参数,但是当我运行应用程序时,出现没有参数或参数为空的错误。 StepReader.pm package StepReader; use s
安装 gtk 1.2(包名 gtk1)和 macports chokes 在最终的 make 中,在 libintl.h 的第 440 行。 extern locale_t libintl_newlo
我用按钮创建表格。 这是javascript代码: function layersListTable(layers) { var content =''; $.each($(layer
我在使用此 javascript 时遇到此错误,任何人都可以帮我弄清楚我做错了什么吗? $(this).prepend('Check availability »'); 它给我错误 mis
我有一个独立的工具链 NDK13b、api19、llvm 3.8 编译器、arm 32 位、带有 libcpp(llvm C++ 库) 我想避免依赖 libgcc,所以我构建了 compiler-rt
我按照一些教程使用 phonegap 的条形码扫描器插件。但是当我从现有源创建一个新的 android 项目来创建条码库时 (step 6 in this page)我收到错误:“AndroidMan
我现在尝试在 Eclipse 中打开我的布局 xml 文件。我只得到错误 No XML content. Please add a root view or layout to your docume
我的 android-sdk-windows\tools 目录中缺少层次结构查看器工具。 工具链接: http://developer.android.com/guide/developing/too
我是一名优秀的程序员,十分优秀!