spring-websocket.xml 1.3 KB

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:mvc="http://www.springframework.org/schema/mvc"
  7. xsi:schemaLocation="
  8. http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context-4.2.xsd
  12. http://www.springframework.org/schema/aop
  13. http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
  14. http://www.springframework.org/schema/mvc
  15. http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">
  16. <bean id="websocketProperties" class="com.kmall.manager.manager.pay.data.open.websocket.WebsocketProperties">
  17. <property name="wsUrl" value="${websocket.wsUrl}"/>
  18. <property name="cusSignMethod" value="${websocket.cusSignMethod}"/>
  19. <property name="opCardPwd" value="${websocket.opCardPwd}"/>
  20. <property name="cardNo" value="${websocket.cardNo}"/>
  21. <property name="id" value="${websocket.id}"/>
  22. </bean>
  23. </beans>