Using Jersey to read form data(使用 Jersey 读取表单数据)
问题描述
我正在开发一个网络应用程序,其中有一个类似的表单
I'm developing a web app where i have a form like that
<form name="form" action="create-user" method="post">
<input name="accept" type="checkbox"><span>{{acceptLegalTerms}}</span><br>
<input type="submit" value="{{Continue}}" class="primary fright"/>
</form>
在服务器端,我们使用的是 Jersey(在 GAE 上).这就是我试图用来读取 POST 值的内容
On the server side, We're using Jersey (on GAE). And here's what I'm trying to use to read the POST values
@POST
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Path("create-user")
public Response createUser(@FormDataParam("accept") boolean acceptForm) {
return Response.ok().entity(acceptForm).build();
}
但它不起作用...它返回我...
But it doesn't work... It returns me...
HTTP ERROR 415
Problem accessing /login/create-user. Reason:
Unsupported Media Type
有什么想法吗?我做错了什么?
Any ideas? What Am I doing wrong?
谢谢!
推荐答案
试试这个:
@Path("test")
@POST
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public String testForm(@FormParam("accept") String accept) {
return accept;
}
Multipart 略有不同,请参阅 jersey 示例 multipart-webapp 或查看 http://www.w3.org/Protocols/rfc1341/7_2_Multipart.html.您的网络表单没有生成它,因此 Jersey 正确返回 415 - Unsupported media type,因为您没有任何资源正在处理application/x-www-form-urlencoded"媒体类型.
Multipart is something slightly different, see jersey sample multipart-webapp or see http://www.w3.org/Protocols/rfc1341/7_2_Multipart.html. Your web form is not producing it, so Jersey correctly returns 415 - Unsupported media type, because you don't have any resource which is handling "application/x-www-form-urlencoded" media type.
这篇关于使用 Jersey 读取表单数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Jersey 读取表单数据
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01