Hi,

I've found in one of the last examples the following config snippet:

<bean id="filterChainBuilder" class="org.apache.mina.integration.spring.DefaultIoFilterChainBuilderFactoryBean">
  <property name="filters">
    <list>
      <bean class="org.apache.mina.filter.thread.ThreadPoolFilter">
      <!-- Threads will be named IoWorker-1, IoWorker-2, etc -->
        <constructor-arg value="IoWorker"/>
        <property name="maximumPoolSize" value="16"/>
        <property name="keepAliveTime" value="60000"/>
      </bean>
     ...

Unfortunately this code doesn't work anymore because of changes of the underlying class I think. What can I do?

Any help would be appreciated.

Regards
Michael

Reply via email to