现在我的ktor服务器是基于netty的。当我做长 GET 请求(大约 9300 个字符(主要在查询参数中))时,ktor 回答Unhandled: GET - /bad-request
。如果我减少 url 的长度,它工作正常。
问问题
556 次
1 回答
0
在您的嵌入式服务器配置中,您可以提供一个函数“httpServerCodec”来创建 HttpServerCodec ( https://netty.io/4.1/api/io/netty/handler/codec/http/HttpServerCodec.html ),您可以在其中设置 maxInitialLineLength财产。
embeddedServer(Netty, configure = {
// Size of the queue to store [ApplicationCall] instances that cannot be immediately processed
requestQueueLimit = 16
// Do not create separate call event group and reuse worker group for processing calls
shareWorkGroup = false
// User-provided function to configure Netty's [ServerBootstrap]
configureBootstrap = {
// ...
}
httpServerCodec = {
HttpServerCodec(.......)
}
// Timeout in seconds for sending responses to client
responseWriteTimeoutSeconds = 10
}) {
// ...
}.start(true)
于 2019-03-14T13:58:07.070 回答