开发者社区> 问答> 正文

使用Helidon 2.0.0-M2在POST方法上获取原始JSON

我在下面有一个POST端点。我想访问在处理程序方法内发送的原始JSON。理想情况下,可以是String形式,也可以转换为Map形式。JSON中的数据可能会有所不同,我不想像Pokemon示例中那样将其强制转换为特定的类。

我在下面尝试了两种方法,一种尝试从请求对象访问数据,第二种使用带有String.class的处理程序。第一个记录以下错误“ SeverE org.eclipse.yasson.internal.Unmarshaller Thread [nioEventLoopGroup-3-2,10,main]:意外的char 39位于(行号= 1,列号= 1,偏移量= 0)” 。

第二个显示JSON“ {key1:value1,”的第一部分。

curl POST命令

curl -d '{"key1":"value1", "key2":"value2"}' -H "Content-Type: application/json" -X POST http://localhost:8090/datastore/type

方法1

.post("/type", this::addDataTypeItem)
private void addDataTypeItem(ServerRequest request, ServerResponse response) {

    // get RAW JSON as String or Map of JSON contents

    // this code does not work.
    // SEVERE org.eclipse.yasson.internal.Unmarshaller Thread[nioEventLoopGroup-3-2,10,main]: Unexpected char 39 at (line no=1, column no=1, offset=0)
    request.content().as(JsonObject.class)
            .thenAccept(jo -> printValue(jo));

}

方法2

.post("/type", Handler.create(String.class, this::addDataTypeItem))
private void addDataTypeItem(ServerRequest request, ServerResponse response, String value) {

    // get RAW JSON as String or Map of JSON contents

    // below prints "value: '{key1:value1,"
    System.out.println("value: "+value);

}

宠物小精灵的例子

.post("/pokemon", Handler.create(Pokemon.class, this::insertPokemon))

 private void insertPokemon(ServerRequest request, ServerResponse response, Pokemon pokemon) {
        dbClient.execute(exec -> exec
                .createNamedInsert("insert-pokemon")
                .indexedParam(pokemon)
                .execute())
                .thenAccept(count -> response.send("Inserted: " + count + " values\n"))
                .exceptionally(throwable -> sendError(throwable, response));
    }

在POST处理程序方法中以字符串或Map形式获取JSON的最佳方法是什么?

展开
收起
montos 2020-05-27 21:28:18 570 0
1 条回答
写回答
取消 提交回答
  • public static void main(final String[] args) throws IOException {
            WebServer.builder(Routing.builder()
                    .register("/datastore", rules ->
                            rules.post("/type",
                                    Handler.create(String.class, (req, res, value) -> System.out.println("String json: " + value))
                            )
                    ).build()
            ).build()
                    .start()
                    .thenAccept(ws -> System.out.println("curl -d '{\"key1\":\"value1\", \"key2\":\"value2\"}' " +
                            "-H \"Content-Type: application/json\" " +
                            "-X POST http://localhost:" + ws.port() + "/datastore/type")
                    );
        }
    

    调用curl之后:

    curl -d '{"key1":"value1", "key2":"value2"}' -H "Content-Type: application/json" -X POST http://localhost:50569/datastore/type
    

    输出:

    String json: {"key1":"value1", "key2":"value2"}
    
    2020-05-27 21:32:02
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载