gpt4 book ai didi

java - 在 jax-rs 中传递 post 数据参数并通过 ajax 调用

转载 作者:行者123 更新时间:2023-12-04 15:11:41 26 4
gpt4 key购买 nike

我研究 StackOverflow 好几天了,浏览了这些链接 123但一切都无济于事。

我是 Java Web 应用程序的新手。我在我的项目中使用 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 项目:

Lib

这是我的 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>

响应始终为空,经过长时间的搜索和谷歌搜索后,我发现参数存在问题,因此作为响应我返回了它们。当我通过 postman 调用地址时,结果正确返回如下: postman_200但是通过ajax或其他系统调用,参数总是空的。 ajax

每当我使用 @QueryParam 以外的东西时,即带有 getter 和 setter 的类,如下面的代码, postman 也会收到 415 错误。Coordinats.java 类:

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;
}
}

postman_415这是堆栈跟踪:

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;
}
}

你有所有的 jackson jar 。您应该删除 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 扫描 Jackson 包以查找 JSON 提供程序。

现在在您的 Postman 调用中,不要使用“params”,因为它不会创建 JSON。您应该使用“正文”选项卡,然后手动输入您要发送的 JSON

{
"x1": 1.1,
"y1": 2.2,
"x2": 3.3,
"y2": 4.4
}

然后将 Content-Type header 设置为 application/json

完成所有这些后,它应该可以工作了。顺便说一句,我强烈建议您学习使用依赖管理器,Maven 或 Gradle。尝试添加 jar 时,您经常会错过添加该 jar 所依赖的 jar,这将导致该 jar 无法工作。

关于java - 在 jax-rs 中传递 post 数据参数并通过 ajax 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65125854/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com