在Swagger中记录流式POST

时间:2019-05-17 15:55:26

标签: java jax-rs swagger

如何将Swagger的InputStream路径参数记录为List<Person>? ApiPath似乎没有request和requstContainer参数。提前致谢。


    @POST
    @Path("/V1/person/batch")
    public void postPersonBatch(InputStream in) throws IOException {
        try (MappingIterator<Person> people = reader.readValues(in)) {
            people.forEachRemaining(writer::write);
        }
    }

0 个答案:

没有答案