Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-dev] Upgrade Jetty7.6.4.v20120524 to Jetty9.3.8.v20160314 resolveNames and requestBufferSize replacement in Jetty9.

Hi,

I am trying to upgrade Jetty7 to Jetty9.3.8.v20160314. I was able to
configure ServerConnector fine.
In Jetty 7 we had following properties set.

<bean id="unsecuredConnector"
class="org.eclipse.jetty.server.nio.SelectChannelConnector">
        <property name="statsOn" value="true"/>
        <property name="acceptQueueSize" value="7"/>
        <property name="acceptors" value="7"/>
        *<property name="resolveNames" value="false"/>*
        <property name="maxIdleTime" value="300000"/>
        *<property name="requestBufferSize" value="100000"/>*
        <property name="lowResourcesConnections" value="1000"/>
        <property name="lowResourceMaxIdleTime" value="300000"/>
    </bean>

I see statsOn is replaced by ConnectorStatistics, lowResourcesConnections
and lowResourceMaxIdleTime are now supposed to be set using
LowResourceMonitor.

I want to know whats the replacement of *resolveNames *and
*requestBufferSize *in Jetty9 ?

Thanks,
Seema




--
View this message in context: http://jetty.4.x6.nabble.com/Upgrade-Jetty7-6-4-v20120524-to-Jetty9-3-8-v20160314-resolveNames-and-requestBufferSize-replacement--tp4965574.html
Sent from the Jetty Dev mailing list archive at Nabble.com.


Back to the top