當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Mina集成Spring --- 在配置文件中配置sessionconfig
生活随笔
收集整理的這篇文章主要介紹了
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/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsdhttp://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-3.0.xsdhttp://www.springframework.org/schema/aophttp://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>?
轉載于:https://www.cnblogs.com/juepei/p/4113403.html
總結
以上是生活随笔為你收集整理的Mina集成Spring --- 在配置文件中配置sessionconfig的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 堡垒之夜好玩吗
- 下一篇: JSP第十四次课:JSP项目开发高级操作