mirror of
https://gitee.com/farsunset/cim.git
synced 2025-07-22 15:56:42 +08:00
修改一处包名错误
This commit is contained in:
parent
5ad1a06425
commit
0109a40311
@ -1,55 +1,54 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xmlns:tx="http://www.springframework.org/schema/tx"
|
xmlns:tx="http://www.springframework.org/schema/tx"
|
||||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
xmlns:aop="http://www.springframework.org/schema/aop"
|
||||||
xsi:schemaLocation="
|
xsi:schemaLocation="
|
||||||
http://www.springframework.org/schema/beans
|
http://www.springframework.org/schema/beans
|
||||||
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
||||||
http://www.springframework.org/schema/tx
|
http://www.springframework.org/schema/tx
|
||||||
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
|
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
|
||||||
http://www.springframework.org/schema/aop
|
http://www.springframework.org/schema/aop
|
||||||
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
|
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
|
||||||
<bean id="cimIoHandler" class="com.farsunset.cim.sdk.server.handler.CIMIoHandler" >
|
<bean id="cimIoHandler" class="com.farsunset.cim.sdk.server.handler.CIMIoHandler" >
|
||||||
<property name="handlers">
|
<property name="handlers">
|
||||||
|
|
||||||
<map>
|
<map>
|
||||||
|
|
||||||
<entry key="client_bind">
|
<entry key="client_bind">
|
||||||
<bean class="com.farsunset.cim.handler.BindHandler" />
|
<bean class="com.farsunset.cim.handler.BindHandler" />
|
||||||
</entry>
|
</entry>
|
||||||
<entry key="client_logout">
|
<entry key="client_logout">
|
||||||
<bean class="com.farsunset.cim.handler.LogoutHandler" />
|
<bean class="com.farsunset.cim.handler.LogoutHandler" />
|
||||||
</entry>
|
</entry>
|
||||||
<entry key="client_cimsession_closed">
|
<entry key="client_cimsession_closed">
|
||||||
<bean class="com.farsunset.cim.handler.SessionClosedHandler"/>
|
<bean class="com.farsunset.cim.handler.SessionClosedHandler"/>
|
||||||
</entry>
|
</entry>
|
||||||
<entry key="client_get_offline_message">
|
<entry key="client_get_offline_message">
|
||||||
<bean class="com.farsunset.cim.handler.PushOfflineMessageHandler"/>
|
<bean class="com.farsunset.cim.handler.PushOfflineMessageHandler"/>
|
||||||
</entry>
|
</entry>
|
||||||
|
|
||||||
</map>
|
</map>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<bean id="CIMNioAcceptor" class="com.farsunset.cim.sdk.server.handler.CIMNioSocketAcceptor"
|
<bean id="CIMNioAcceptor" class="com.farsunset.cim.sdk.server.launcher.CIMNioSocketAcceptor"
|
||||||
init-method="bind" destroy-method="unbind">
|
init-method="bind" destroy-method="unbind">
|
||||||
<property name="port" value="23456" />
|
<property name="port" value="23456" />
|
||||||
<property name="ioHandler" ref="cimIoHandler" />
|
<property name="ioHandler" ref="cimIoHandler" />
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="CIMSessionManager" class="com.farsunset.cim.sdk.server.session.DefaultSessionManager"/>
|
<bean id="CIMSessionManager" class="com.farsunset.cim.sdk.server.session.DefaultSessionManager"/>
|
||||||
|
|
||||||
<!-- 集群服务器时 CIMSessionManager 配置
|
<!-- 集群服务器时 CIMSessionManager 配置
|
||||||
<bean id="CIMSessionManager" class="com.farsunset.lvxin.cim.session.ClusterSessionManager">
|
<bean id="CIMSessionManager" class="com.farsunset.lvxin.cim.session.ClusterSessionManager">
|
||||||
<property name="CIMSessionDao" ref="CIMSessionDaoImpl" />
|
<property name="CIMSessionDao" ref="CIMSessionDaoImpl" />
|
||||||
</bean>
|
</bean>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
</beans>
|
</beans>
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user