Я пытаюсь выполнить следующий фрагмент кода, чтобы добавить результат, полученный из БД в список,
`env.getCapabilities().forEach(action->{
con.queryWithParams("select @rid from capabilities where id=?", new JsonArray().add(action.intValue()) , selectOutputParentid -> {
if (selectOutputParentid.succeeded()) {
capability.add(selectOutputParentid.result().getRows().get(0).getString("rid"));
// System.out.println("The output "+selectOutputParentid.result().getRows().get(0).getString("rid"));
}
else{
System.out.println(selectOutputParentid.cause());
routingContext.response().end("provided user not found");
}
});
});`
, но выдает: Success
The size 2
[15:34:38,373][SEVERE][vert.x-eventloop-thread-0][ContextImpl] Unhandled exception
java.lang.NullPointerException
at com.thbs.esb.UserManagement.UserManagementApi.lambda$20(UserManagementApi.java:364)