在 jax-rs 中传递 post 数据参数并通过 ajax 调用
passing post data parameters in jax-rs and calling by ajax
我研究 Whosebug 好几天了,浏览了这些链接1 and 2 and 3,但都无济于事。
我是 java 网络应用程序的新手。我在我的项目中使用 Tomcat 9.0.4 和 Jersey 1.18。我想将 4 个参数作为 4 个点传递给用 JAX-RS 编写的 post Web 服务,并返回面积和周长作为响应。这是我的服务器端网络服务:
@path("/geo")
public class geonodes{
static double area(double x1,double y1,double x2,double y2){
//do area calculation
}
static double perimeter(double x1,double y1,double x2,double y2){
//do perimeter calculation
}
@POST
@Produces(MediaType.APPLICATION_JSON)
public Response calculate(@QuerParam("x1") Double x1,@QuerParam("y1") Double y1,@QuerParam("x2") Double x2,@QuerParam("y2") Double y2){
JSONObject obj = new JSONObject();
obj.put("area",area(x1,y1,x2,y2));
obj.put("perimeter",perimeter(x1,y1,x2,y2));
result = JSONObject.toJSONString(obj);
return Response.status(201).entity(result).build();
}
这是我的 ajax 客户端调用:
$.ajax({
url:'http://localhost:8080/api/geo',
type:'POST',
dataType:'json',
contentType:'application/json',
data:JSON.stringify({x1:22.1,y1:44.19,x2:55.33,y2:49.72}),
success:function(data){console.log(data);},
error:function(errMsg){console.log(errMsg);},
});
我使用一个包含这些 jar 文件的非 Maven 项目:
这是我的 web.xml
<servlet>
<servlet-name>Geo Nodes API</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>example,com.fasterxml.jackson.jaxrs.json</param-value>
</init-param>
<init-param>
<param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Geo Nodes API</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
<filter>
<filter-name>CorsFilter</filter-name>
<filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>CorsFilter</filter-name>
<url-pattern>/api/*</url-pattern>
</filter-mapping>
响应始终为空,经过长时间搜索和 google,我发现参数存在问题,因此作为响应我返回了它们。当我通过 postman 调用地址时,结果 returns 正确如下:
但是通过ajax或其他系统调用,参数总是空的。
每当我使用 @QueryParam 以外的东西时,即 class 与 getter 和 setter 如下代码一样,postman 也会收到 415 错误。
Coordinats.java class:
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Coordinates {
private Double x1;
private Double y1;
private Double x2;
private Double y2;
public Double getX1() {
return x1;
}
public void setX1(Double x1) {
this.x1 = x1;
}
public Double getY1() {
return y1;
}
public void setY1(Double y1) {
this.y1 = y1;
}
public Double getX2() {
return x2;
}
public void setX2(Double x2) {
this.x2 = x2;
}
public Double getY2() {
return y2;
}
public void setY2(Double y2) {
this.y2 = y2;
}
}
服务器端代码片段:
import model.Coordinates;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
@Path("geo")
public class Geo {
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Coordinates request(Coordinates coordinates){
Double x1 = coordinates.getX1();
Double y1 = coordinates.getY1();
Double x2 = coordinates.getX2();
Double y2 = coordinates.getY2();
return coordinates;
}
}
这是堆栈跟踪:
04-Dec-2020 05:53:14.771 SEVERE [http-nio-8080-exec-7] com.sun.jersey.spi.container.ContainerRequest.getEntity A message body reader for Java class model.Coordinates, and Java type class model.Coordinates, and MIME media type application/json was not found.
The registered message body readers compatible with the MIME media type are:
application/json ->
com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$App
com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$App
com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$App
*/* ->
com.sun.jersey.core.impl.provider.entity.FormProvider
com.sun.jersey.core.impl.provider.entity.StringProvider
com.sun.jersey.core.impl.provider.entity.ByteArrayProvider
com.sun.jersey.core.impl.provider.entity.FileProvider
com.sun.jersey.core.impl.provider.entity.InputStreamProvider
com.sun.jersey.core.impl.provider.entity.DataSourceProvider
com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General
com.sun.jersey.core.impl.provider.entity.ReaderProvider
com.sun.jersey.core.impl.provider.entity.DocumentProvider
com.sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader
com.sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader
com.sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader
com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$General
com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General
com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General
com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General
com.sun.jersey.core.impl.provider.entity.EntityHolderReader
com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$General
com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$General
我添加了所有需要的 jar 文件,现在我很困惑哪里出了问题!?当我传递一个对象时,我得到一个 415 错误,当我传递 @QueryParam 时,参数可以通过 postman 调用访问,但不能通过 ajax 调用访问!!!
如果你想发送JSON,那么你这里的是正确的
@Path("geo")
public class Geo {
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Coordinates request(Coordinates coordinates){
Double x1 = coordinates.getX1();
Double y1 = coordinates.getY1();
Double x2 = coordinates.getX2();
Double y2 = coordinates.getY2();
return coordinates;
}
}
你有所有的杰克逊罐子。您应该删除 web.xml 中的 POJOMappingFeature 并删除 jersey-json
jar,因为这可能会导致一些冲突。
然后在web.xml
中添加以下内容
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>
example,
com.fasterxml.jackson.jaxrs.json
</param-value>
</init-param>
这将告诉 Jersey 扫描 JSON 供应商的 Jackson 包裹。
现在在您的 Postman 调用中,不要使用“params”,因为它不会创建 JSON。您应该使用“body”选项卡,然后手动输入您要发送的JSON
{
"x1": 1.1,
"y1": 2.2,
"x2": 3.3,
"y2": 4.4
}
然后将Content-Type
header设置为application/json
完成所有这些后,它应该可以工作了。顺便说一句,我强烈建议您学习使用依赖管理器,Maven 或 Gradle。尝试添加 jar,你经常会错过添加那个 jar 依赖的 jars,这将导致那个 jar 不能工作。
我研究 Whosebug 好几天了,浏览了这些链接1 and 2 and 3,但都无济于事。
我是 java 网络应用程序的新手。我在我的项目中使用 Tomcat 9.0.4 和 Jersey 1.18。我想将 4 个参数作为 4 个点传递给用 JAX-RS 编写的 post Web 服务,并返回面积和周长作为响应。这是我的服务器端网络服务:
@path("/geo")
public class geonodes{
static double area(double x1,double y1,double x2,double y2){
//do area calculation
}
static double perimeter(double x1,double y1,double x2,double y2){
//do perimeter calculation
}
@POST
@Produces(MediaType.APPLICATION_JSON)
public Response calculate(@QuerParam("x1") Double x1,@QuerParam("y1") Double y1,@QuerParam("x2") Double x2,@QuerParam("y2") Double y2){
JSONObject obj = new JSONObject();
obj.put("area",area(x1,y1,x2,y2));
obj.put("perimeter",perimeter(x1,y1,x2,y2));
result = JSONObject.toJSONString(obj);
return Response.status(201).entity(result).build();
}
这是我的 ajax 客户端调用:
$.ajax({
url:'http://localhost:8080/api/geo',
type:'POST',
dataType:'json',
contentType:'application/json',
data:JSON.stringify({x1:22.1,y1:44.19,x2:55.33,y2:49.72}),
success:function(data){console.log(data);},
error:function(errMsg){console.log(errMsg);},
});
我使用一个包含这些 jar 文件的非 Maven 项目:
这是我的 web.xml
<servlet>
<servlet-name>Geo Nodes API</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>example,com.fasterxml.jackson.jaxrs.json</param-value>
</init-param>
<init-param>
<param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Geo Nodes API</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
<filter>
<filter-name>CorsFilter</filter-name>
<filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>CorsFilter</filter-name>
<url-pattern>/api/*</url-pattern>
</filter-mapping>
响应始终为空,经过长时间搜索和 google,我发现参数存在问题,因此作为响应我返回了它们。当我通过 postman 调用地址时,结果 returns 正确如下:
每当我使用 @QueryParam 以外的东西时,即 class 与 getter 和 setter 如下代码一样,postman 也会收到 415 错误。 Coordinats.java class:
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Coordinates {
private Double x1;
private Double y1;
private Double x2;
private Double y2;
public Double getX1() {
return x1;
}
public void setX1(Double x1) {
this.x1 = x1;
}
public Double getY1() {
return y1;
}
public void setY1(Double y1) {
this.y1 = y1;
}
public Double getX2() {
return x2;
}
public void setX2(Double x2) {
this.x2 = x2;
}
public Double getY2() {
return y2;
}
public void setY2(Double y2) {
this.y2 = y2;
}
}
服务器端代码片段:
import model.Coordinates;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
@Path("geo")
public class Geo {
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Coordinates request(Coordinates coordinates){
Double x1 = coordinates.getX1();
Double y1 = coordinates.getY1();
Double x2 = coordinates.getX2();
Double y2 = coordinates.getY2();
return coordinates;
}
}
04-Dec-2020 05:53:14.771 SEVERE [http-nio-8080-exec-7] com.sun.jersey.spi.container.ContainerRequest.getEntity A message body reader for Java class model.Coordinates, and Java type class model.Coordinates, and MIME media type application/json was not found.
The registered message body readers compatible with the MIME media type are:
application/json ->
com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$App
com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$App
com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$App
*/* ->
com.sun.jersey.core.impl.provider.entity.FormProvider
com.sun.jersey.core.impl.provider.entity.StringProvider
com.sun.jersey.core.impl.provider.entity.ByteArrayProvider
com.sun.jersey.core.impl.provider.entity.FileProvider
com.sun.jersey.core.impl.provider.entity.InputStreamProvider
com.sun.jersey.core.impl.provider.entity.DataSourceProvider
com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General
com.sun.jersey.core.impl.provider.entity.ReaderProvider
com.sun.jersey.core.impl.provider.entity.DocumentProvider
com.sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader
com.sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader
com.sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader
com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$General
com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General
com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General
com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General
com.sun.jersey.core.impl.provider.entity.EntityHolderReader
com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$General
com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$General
我添加了所有需要的 jar 文件,现在我很困惑哪里出了问题!?当我传递一个对象时,我得到一个 415 错误,当我传递 @QueryParam 时,参数可以通过 postman 调用访问,但不能通过 ajax 调用访问!!!
如果你想发送JSON,那么你这里的是正确的
@Path("geo")
public class Geo {
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Coordinates request(Coordinates coordinates){
Double x1 = coordinates.getX1();
Double y1 = coordinates.getY1();
Double x2 = coordinates.getX2();
Double y2 = coordinates.getY2();
return coordinates;
}
}
你有所有的杰克逊罐子。您应该删除 web.xml 中的 POJOMappingFeature 并删除 jersey-json
jar,因为这可能会导致一些冲突。
然后在web.xml
中添加以下内容<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>
example,
com.fasterxml.jackson.jaxrs.json
</param-value>
</init-param>
这将告诉 Jersey 扫描 JSON 供应商的 Jackson 包裹。
现在在您的 Postman 调用中,不要使用“params”,因为它不会创建 JSON。您应该使用“body”选项卡,然后手动输入您要发送的JSON
{
"x1": 1.1,
"y1": 2.2,
"x2": 3.3,
"y2": 4.4
}
然后将Content-Type
header设置为application/json
完成所有这些后,它应该可以工作了。顺便说一句,我强烈建议您学习使用依赖管理器,Maven 或 Gradle。尝试添加 jar,你经常会错过添加那个 jar 依赖的 jars,这将导致那个 jar 不能工作。