是否可以覆盖 Tomcat 中默认的 Connector 类实现?
从 tomcat 6 文档来看,您似乎可以设置诸如上下文(http://tomcat.apache.org/tomcat-6.0-doc/config/context.html)、引擎(http://tomcat.apache.org/tomcat-6.0-doc/config/context.html)之类的类名。 apache.org/tomcat-6.0-doc/config/engine.html)和主机(http://tomcat.apache.org/tomcat-6.0-doc/config/host.html),但不是连接器。
我在这里遗漏了一些东西还是根本不可能?
From the tomcat 6 documentation it looks like you can set the classname of things like the Context (http://tomcat.apache.org/tomcat-6.0-doc/config/context.html), Engine (http://tomcat.apache.org/tomcat-6.0-doc/config/engine.html), and Host (http://tomcat.apache.org/tomcat-6.0-doc/config/host.html), but not the Connector.
Am I missing something here or is it just not possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Connector 元素上的“protocol”属性实际上是一个类名。只是tomcat知道一些特殊的值比如这里的“HTTP/1.1”更友好一些。
你可以做
The "protocol" attribute on the Connector element is really a class name. It's just that tomcat knows a few special values such as "HTTP/1.1" here to be a bit more friendly.
You could do
是的,可以实现您自己的连接器(我们在您的服务器上有 2 个自定义实现),您需要在那里实现协议和所有爵士形式
例如:
希望这有帮助
Yes, it is possible to implement your own connector (We have 2 custom impl. on your servers), you need to implement the protocol and all the jazz form there
for instance:
hope this helps