zoukankan      html  css  js  c++  java
  • Mina集成Spring --- 在配置文件中配置sessionconfig

    这个找了很久,一直想用这个功能,在xml里,配置如下:

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
           xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
         http://www.springframework.org/schema/tx
         http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
         http://www.springframework.org/schema/aop
         http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
    
        <!-- basic config-->
        <bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
            <property name="customEditors">
                <map>
                    <entry key="java.net.SocketAddress" value="org.apache.mina.integration.beans.InetSocketAddressEditor">
                    </entry>
                </map>
            </property>
        </bean>
    
        <!-- handler -->
        <bean id="SimpleHandler" class="com.server.handler.TestHandler" />
    
        <!-- session config -->
        <bean id="sessionConfig" factory-bean="ioAcceptor" factory-method="getSessionConfig" >
            <property name="bothIdleTime" value="10"/>
            <property name="readBufferSize" value="2048" />
    
        </bean>
    
        <!-- filter chain -->
        <bean id="filterChainBuilder"
              class="org.apache.mina.core.filterchain.DefaultIoFilterChainBuilder">
            <property name="filters">
                <map>
                    <entry key="executor">
                        <bean class="org.apache.mina.filter.executor.ExecutorFilter" />
                    </entry>
                    <entry key="codec">
                        <bean class="org.apache.mina.filter.codec.ProtocolCodecFilter">
                            <constructor-arg>
                                <bean class="com.server.codec.basic.BasicFactory" />
                            </constructor-arg>
                        </bean>
                    </entry>
                    <entry key="logging">
                        <bean class="org.apache.mina.filter.logging.LoggingFilter" />
                    </entry>
                </map>
            </property>
        </bean>
    
        <!-- ioAcceptor -->
        <bean id="ioAcceptor" class="org.apache.mina.transport.socket.nio.NioSocketAcceptor"
              init-method="bind" destroy-method="unbind" >
            <property name="defaultLocalAddress" value=":8888" />
            <property name="handler" ref="SimpleHandler" />
            <property name="filterChainBuilder" ref="filterChainBuilder" />
            <property name="reuseAddress" value="true" />
        </bean>
    
    
    </beans>
  • 相关阅读:
    [Swift]LeetCode895. 最大频率栈 | Maximum Frequency Stack
    [Swift]LeetCode894. 所有可能的满二叉树 | All Possible Full Binary Trees
    [Swift]LeetCode893. 特殊等价字符串组 | Groups of Special-Equivalent Strings
    [Swift]LeetCode892. 三维形体的表面积 | Surface Area of 3D Shapes
    [Swift]LeetCode891. 子序列宽度之和 | Sum of Subsequence Widths
    [Swift]LeetCode890. 查找和替换模式 | Find and Replace Pattern
    find missing conjunction, why?
    sh 脚本报错
    What's mean ORA-25191?
    饼状图
  • 原文地址:https://www.cnblogs.com/juepei/p/4113403.html
Copyright © 2011-2022 走看看