泽西岛:如何记录HTTP POST数据?

时间:2014-05-11 06:18:34

标签: java spring jersey jax-rs

我有像

这样的代码块
    final Invocation.Builder builder = webTarget.request();
    final Entity<IFSRequestPresentation> entity = Entity.entity(ifsRequestPresentation, MediaType.APPLICATION_JSON);
    final Response response = builder.post(entity);

服务器(在我外面,我看不到日志)没有返回我期望的数据。我认为json有效载荷不好

IFSRequestPresentation非常复杂,我希望看到它如何表示为json String

我正在使用Spring (4.0.3)Jersey (2.8)

我有办法记录builder.post(entity)方法吗?或者至少看看entity看起来像json字符串?

1 个答案:

答案 0 :(得分:0)

我把它写成文件,如

mapper.writeValue(new File("my.json"), IFSRequestPresentation);

根据杰克逊documentation并将json写入该文件