我在下面有一个 POST 端点。我想访问在处理程序方法中发送的原始 JSON。理想情况下,这可以作为字符串或转换为地图。JSON 中的数据可能会有所不同,我不想像 Pokemon 示例中那样将其转换为特定的类。
我尝试了以下两种方法,一种尝试从请求对象访问数据,另一种使用带有 String.class 的处理程序。第一个记录以下错误“SEVERE org.eclipse.yasson.internal.Unmarshaller Thread[nioEventLoopGroup-3-2,10,main]: Unexpected char 39 at (line no=1, column no=1, offset=0)” .
第二个打印 JSON “{key1:value1”的第一部分。
卷曲 POST 命令
curl -d '{"key1":"value1", "key2":"value2"}' -H "Content-Type: application/json" -X POST http://localhost:8090/datastore/type
方法一
.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));
}
方法二
.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 处理程序方法中将 JSON 作为字符串或 Map 获取的最佳方法是什么?
谢谢