FileFetchRequestHandler 구현

This commit is contained in:
임장현
2026-06-05 17:00:26 +09:00
parent 2cf94a3de8
commit adeec703ea
37 changed files with 1206 additions and 273 deletions
@@ -17,16 +17,16 @@
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
">
">
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.jms.TimerEventListenerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap11Svr01TimerQueue"/>
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.TimerEventListenerConsumerService">
<property name="uri" value="vm://localhost?broker.persistent=false&amp;broker.useJmx=false"/>
<property name="queue" value="com.eactive.eai.common.timerQueue"/>
<property name="maxThread" value="100"/>
</bean>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.jms.JobPolingHandlerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap11Svr01JobQueue"/>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.JobHandlerConsumerService">
<property name="uri" value="vm://localhost?broker.persistent=false&amp;broker.useJmx=false"/>
<property name="queue" value="com.eactive.eai.common.jobQueue"/>
<property name="maxThread" value="100"/>
</bean>
@@ -19,14 +19,14 @@ applicationContext-jms.xml<?xml version="1.0" encoding="UTF-8"?>
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
">
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.jms.TimerEventListenerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap11Svr01TimerQueue"/>
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.TimerEventListenerConsumerService">
<property name="uri" value="vm://localhost?broker.persistent=false&amp;broker.useJmx=false"/>
<property name="queue" value="com.eactive.eai.common.timerQueue"/>
<property name="maxThread" value="100"/>
</bean>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.jms.JobPolingHandlerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap11Svr01JobQueue"/>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.JobHandlerConsumerService">
<property name="uri" value="vm://localhost?broker.persistent=false&amp;broker.useJmx=false"/>
<property name="queue" value="com.eactive.eai.common.jobQueue"/>
<property name="maxThread" value="100"/>
</bean>
@@ -19,14 +19,14 @@ applicationContext-jms.xml<?xml version="1.0" encoding="UTF-8"?>
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
">
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.jms.TimerEventListenerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap21Svr01TimerQueue"/>
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.TimerEventListenerConsumerService">
<property name="uri" value="vm://localhost?broker.persistent=false&amp;broker.useJmx=false"/>
<property name="queue" value="com.eactive.eai.common.timerQueue"/>
<property name="maxThread" value="100"/>
</bean>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.jms.JobPolingHandlerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap21Svr01JobQueue"/>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.JobHandlerConsumerService">
<property name="uri" value="vm://localhost?broker.persistent=false&amp;broker.useJmx=false"/>
<property name="queue" value="com.eactive.eai.common.jobQueue"/>
<property name="maxThread" value="100"/>
</bean>