zoukankan      html  css  js  c++  java
  • spring netty-socket.io

    spring-nettysocketio.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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <bean id="socketioConfig" class="com.corundumstudio.socketio.Configuration">
    <property name="hostname" value="${socketio.host}" />
    <property name="port" value="${socketio.port}" />
    <property name="heartbeatTimeout" value="${socketio.heartbeatTimeout}" />
    </bean>

    <bean id="socketIOServer" class="com.corundumstudio.socketio.SocketIOServer"
    scope="singleton" init-method="start" lazy-init="false">
    <constructor-arg ref="socketioConfig" />
    </bean>
    </beans>

  • 相关阅读:
    SAP 会计科目
    固定资产采购
    MIRO 注意点
    移动类型与会计科目的字段选择
    特征、分类的命名规则
    采购进项税、 含税价转不含税价
    换手率
    内盘、外盘
    SAP 文本增强
    Intellj IDEA 问题集锦
  • 原文地址:https://www.cnblogs.com/man-li/p/4476223.html
Copyright © 2011-2022 走看看