我正在尝试测试Jetty关于Proxy / Load Balancer Connection的一些配置,并且在代理协议部分有一个示例:
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.ServerConnector">
<Arg name="server"><Ref refid="Server" /></Arg>
<Arg name="factories">
<Array type="org.eclipse.jetty.server.ConnectionFactory">
<Item>
<New class="org.eclipse.jetty.server.ProxyConnectionFactory"/>
</Item>
<Item>
<New class="org.eclipse.jetty.server.HttpConnectionFactory">
<Arg name="config"><Ref refid="httpConfig" /></Arg>
</New>
</Item>
</Array>
</Arg>
<Set name="host"><Property name="jetty.host" /></Set>
<Set name="port"><Property name="jetty.http.port" default="80" /></Set>
</New>
</Arg>
</Call>
问题是jetty在启动时会抛出java.lang.ClassNotFoundException:org.eclipse.jetty.server.ProxyConnectionFactory,因为ProxyConnectionFactory类不在libs中。 搜索它,我发现它是在jetty-server中,对于jetty 9.3.5(对于java 8),但我使用的是9.2.7版本。
是否有人知道我的版本9.2.7的另一个软件包中是否提供此配置?在当前版本之前,我没有在有关ProxyConnectionFactory可用性的文档中找到任何内容。
答案 0 :(得分:1)
org.eclipse.jetty.server.ProxyConnectionFactory
为introduced in Jetty 9.3.0.M2,作为对PROXY协议的一般支持的一部分。
抱歉,它不适用于Jetty 9.2.x系列。