在Spring集成实用程序

时间:2016-02-28 06:04:21

标签: spring-integration

下面我有程序发送消息并从队列中消耗消息,现在我已经注释掉了发送部分并且只想消耗队列中的消息

现在我想在下面的程序中启用日志记录,以便在我的c:驱动器中生成一个日志文件,在该日志文件中它应该指示它在什么时间戳消耗了什么消息请告知如何配置登录以下配置文件

<?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:int="http://www.springframework.org/schema/integration"
    xmlns:jms="http://www.springframework.org/schema/integration/jms"
    xmlns:file="http://www.springframework.org/schema/integration/file"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans

    http://www.springframework.org/schema/beans/spring-beans.xsd 
    http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd 
    http://www.springframework.org/schema/integration/jms 
    http://www.springframework.org/schema/integration/jms/spring-integration-jms.xsd 
    http://www.springframework.org/schema/integration/spring-integration.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/integration/file
    http://www.springframework.org/schema/integration/file/spring-integration-file.xsd    
    http://www.springframework.org/schema/context/spring-context.xsd">


    <int:poller id="poller" default="true">
        <int:interval-trigger interval="200" />
    </int:poller>



    <int:channel id="input">
        <int:queue capacity="10" />
    </int:channel>

    <bean id="tibcoEMSJndiTemplate" class="org.springframework.jndi.JndiTemplate">
        <property name="environment">
            <props>
                <prop key="java.naming.factory.initial">com.tibco.tibjms.naming.TibjmsInitialContextFactory
                </prop>
                <prop key="java.naming.provider.url">tcp://lsdrtems2.fm.crdgrp.net:7333</prop>
                <prop key="java.naming.security.principal">acfgtir</prop>
                <prop key="java.naming.security.credentials">acfgtir</prop>
            </props>
        </property>
    </bean>

    <bean id="tibcoEMSConnFactory" class="org.springframework.jndi.JndiObjectFactoryBean">
        <property name="jndiTemplate">
            <ref bean="tibcoEMSJndiTemplate" />
        </property>
        <property name="jndiName">
            <value>GenericConnectionFactory</value>
        </property>
    </bean>

    <bean id="tibcosendJMSTemplate" class="org.springframework.jms.core.JmsTemplate">
        <property name="connectionFactory">
            <ref bean="tibcoEMSConnFactory" />
        </property>
        <property name="defaultDestinationName">
            <value>acfgtirrtyation.ioa.swretift_publish_poc1</value>
        </property>
        <property name="pubSubDomain">
            <value>false</value>
        </property>
        <property name="receiveTimeout">
            <value>120000</value>
        </property>
    </bean>




    <!-- <jms:outbound-channel-adapter channel="input" 
        destination-name="acfgtirrtyation.ioa.swretift_publish_poc1" connection-factory="tibcoEMSConnFactory" /> -->

<int:channel id="objetChannel"></int:channel>
<int:channel id="StringChannel"></int:channel>
<int:channel id="jmsInChannel" />



<jms:message-driven-channel-adapter id="jmsIn" concurrent-consumers="10"
        destination-name="acfgtirrtyation.ioa.swretift_publish_poc1"  connection-factory="tibcoEMSConnFactory" extract-payload="false"
        channel="jmsInChannel" />

    <int:payload-type-router input-channel="jmsInChannel">
    <int:mapping type="javax.jms.ObjectMessage" channel="objetChannel" />
     <int:mapping type="javax.jms.TextMessage" channel="StringChannel" />
    </int:payload-type-router>



 <file:outbound-channel-adapter id="filesoutOject"  channel="objetChannel" directory="C:\\abcsaral"
 filename-generator="generatorr" />



 <file:outbound-channel-adapter id="filesoutString"  channel="StringChannel" directory="C:\\abcsaral"
 filename-generator="generatorr" />

<bean id="generatorr" class="com.abs.tibco.TimestampTextGenerator">
    </bean>


</beans>

1 个答案:

答案 0 :(得分:4)

将log4j(或logback,或commons-logging支持的任何java日志记录系统)添加到类路径,并将其配置为记录类别org.springframework.integration的DEBUG级别。

或者您可以向频道添加wire tap并将其路由到日志频道适配器

<int:channel id="in">
    <int:interceptors>
        <int:wire-tap channel="logger"/>
    </int:interceptors>
</int:channel>

<int:logging-channel-adapter id="logger" level="DEBUG"/>