如何使用泽西拦截器获取请求正文
我正在我的项目中使用。所有 POST 数据都以格式发送,并在服务器端取消编组到各自的 Bean 中。像这样:REST-Jersey
JSON
向服务器发送请求:
$('a#sayHelloPost').click(function(event){
event.preventDefault();
var mangaData = {
title:'Bleach',
author:'Kubo Tite'
}
var formData=JSON.stringify(mangaData);
console.log(formData);
$.ajax({
url:'rest/cred/sayposthello',
type: 'POST',
data: formData,
dataType: 'json',
contentType:'application/json'
})
});
有效载荷:
{"title":"Bleach","author":"Kubo Tite"}
服务器端:
@POST
@Path("/sayposthello")
@Produces(MediaType.APPLICATION_JSON)
public Response sayPostHello(MangaBean mb){
System.out.println(mb);
return Response.status(200).build();
}
漫画豆:
public class MangaBean {
private String title;
private String author;
@Override
public String toString() {
return "MangaBean [title=" + title + ", author=" + author + "]";
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
}
控制台上的输出:
MangaBean [title=Bleach, author=Kubo Tite]
我从这里得到了REST拦截器实现。
public class JerseyFilter implements ContainerRequestFilter{
@Override
public ContainerRequest filter(ContainerRequest req) {
return req;
}
}
我想访问拦截器中的有效负载(请求正文)。由于数据采用 JSON 格式,因此无法作为请求参数进行访问。有没有办法在拦截器方法中获取请求正文?请指教。