我在下面有一个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的最佳方法是什么?
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"}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。