Jersey and @FormParam not working when charset is specified in the Content-Type(在 Content-Type 中指定字符集时,Jersey 和 @FormParam 不起作用)
问题描述
当 Content-Type
标头中指定 charset
属性时,Jersey 2.0(使用 servlet 3.1)似乎无法解码参数.
It seems like Jersey 2.0 (using servlet 3.1) is not able to decode a parameter when the charset
property is specified in the Content-Type
header.
例如考虑以下端点:
@POST
@Path("/hello")
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces(MediaType.APPLICATION_JSON)
public Response hello(@FormParam("name") String name) {
System.out.println(name);
return ok();
}
此 curl 请求有效:
This curl request works:
curl -X POST -H "content-type: application/x-www-form-urlencoded" -d "name=tom" http://localhost:8080/sampleapp/hello
以下请求不起作用,并且 name
参数为 null
:
The following request instead doesn't work and the name
parameter is null
:
curl -X POST -H "content-type: application/x-www-form-urlencoded; charset=UTF-8" -d "name=tom" http://localhost:8080/sampleapp/hello
我认为内容类型中的 charset=UTF-8
添加会破坏我的代码.
I think the charset=UTF-8
addition in the content type breaks my code.
我已经打开了官方票,以防这是一个错误:https://java.net/jira/browse/JERSEY-1978
I've opened an official ticket just in case this is a bug: https://java.net/jira/browse/JERSEY-1978
推荐答案
我认为这是一个错误.
有一个拉取请求开放以支持此用例:https://github.com/jersey/jersey/pull/24/files
There's a pull request open to support this use case: https://github.com/jersey/jersey/pull/24/files
与此同时,我建议使用过滤器来删除有问题的编码.
In the meantime I'd suggest to use a filter to remove the offending encoding.
编辑根据 OP 评论
我正在考虑以下几点:
@Provider
@PreMatching
public class ContentTypeFilter implements ContainerRequestFilter{
@Override
public void filter(ContainerRequestContext requestContext)
throws IOException {
MultivaluedMap<String,String> headers=requestContext.getHeaders();
List<String> contentTypes=headers.remove(HttpHeaders.CONTENT_TYPE);
if (contentTypes!=null && !contentTypes.isEmpty()){
String contentType= contentTypes.get(0);
String sanitizedContentType=contentType.replaceFirst(";.*", "");
headers.add(HttpHeaders.CONTENT_TYPE, sanitizedContentType);
}
}
}
这篇关于在 Content-Type 中指定字符集时,Jersey 和 @FormParam 不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Content-Type 中指定字符集时,Jersey 和 @FormParam 不起作用
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01