• 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>
  • 相关阅读:
    scala之旅-核心语言特性【多参数列表(柯里化)】(十二)
    scala之旅-核心语言特性【嵌套函数】(十一)
    集合+队列+锁
    JVM + GC 一遍过
    java agent测试
    actuator
    大话设计模式
    leetcode刷题之mysql精彩集锦
    Redis怎么保证与Mysql缓存一致性
    springcloud
  • 原文地址:https://www.cnblogs.com/juepei/p/4113403.html
Copyright © 2020-2023  润新知