Commit 760ca04f1f262466fdfd739744c4abfdf7884e24

Authored by fangcheng
1 parent 610bf7d462
Exists in master

修改文件名称

Showing 2 changed files with 21 additions and 21 deletions

center.manager/src/main/resources/xml/app-sycn.xml View file @ 760ca04
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:tx="http://www.springframework.org/schema/tx"
6   - xmlns:aop="http://www.springframework.org/schema/aop"
7   - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
8   - http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
9   - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
10   - http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
11   - <!-- 数据同步中心配置 -->
12   - <bean id="center" class="com.lyms.sycn.SycnCenter" factory-method="install" >
13   - <property name="queue" ref="queue" />
14   - </bean>
15   -
16   - <!-- 使用的队列信息 -->
17   - <bean id="queue" class="com.lyms.sync.queue.SyncQueue">
18   - <!-- 依赖redis template -->
19   - <constructor-arg index="0" ref="redisTemplate"/>
20   - </bean>
21   -</beans>
center.manager/src/main/resources/xml/app-sync.xml View file @ 760ca04
  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:tx="http://www.springframework.org/schema/tx"
  6 + xmlns:aop="http://www.springframework.org/schema/aop"
  7 + xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
  8 + http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
  9 + http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
  10 + http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
  11 + <!-- 数据同步中心配置 -->
  12 + <bean id="center" class="com.lyms.sycn.SycnCenter" factory-method="install" >
  13 + <property name="queue" ref="queue" />
  14 + </bean>
  15 +
  16 + <!-- 使用的队列信息 -->
  17 + <bean id="queue" class="com.lyms.sync.queue.SyncQueue">
  18 + <!-- 依赖redis template -->
  19 + <constructor-arg index="0" ref="redisTemplate"/>
  20 + </bean>
  21 +</beans>