gpt4 book ai didi

json - 使用 JSON 的 ReSTLet POST

转载 作者:行者123 更新时间:2023-12-04 00:10:50 24 4
gpt4 key购买 nike

如何实现接受 JSON post 的 ReSTLet 功能?
我如何使用 curl 测试这个?

谢谢

最佳答案

使用 ReSTLet 2,您可以:

  • @Post acceptRepresentation(Representation entity) 中测试实体媒体类型兼容性:
    @Post
    public Representation acceptRepresentation(代表实体)
    抛出资源异常{
    如果 (entity.getMediaType().isCompatible(MediaType.APPLICATION_JSON)) {
    //...
    }
    //...
    }
  • 或使用 @Post带有一两个参数:
    @Post("json") 表示 acceptAndReturnJson(Representation entity) {
    //...
    }

  • 请参阅这些链接:
  • http://reSTLet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2585586
    [编辑:tigris.org 于 2020 年 7 月关闭]
  • https://javadocs.restlet.talend.com/2.0/jee/api/org/restlet/resource/Post.html

  • (使用 ReSTLet 1,您需要测试实体的类型。)

    关于json - 使用 JSON 的 ReSTLet POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2033132/

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