Is there a way to directly write the response with...
# javalin
a
Is there a way to directly write the response with
.result
?
t
not by using
ctx.result
, but you can use
ctx.res.outputStream
that's the underlying output stream of the servlet response
a
Thanks!