web-dev-qa-db-ja.com

Springapplication.propertiesからのrabbitmqキューのリッスンを無効にする

春にapplication-development.propertiesファイルを作成して、開発環境を定義したいと思います。この環境では、デバッグ中などにステージングキューに干渉したくないため、rabbitキューのリッスンを無効にします。

問題は-これを制御するプロパティが見つかりません。 「アクティブ」プロパティや「有効」プロパティなどはありません。

これらは私が見つけたプロパティです 春のドキュメント

# RABBIT (RabbitProperties)
spring.rabbitmq.addresses= # connection addresses (e.g. myhost:9999,otherhost:1111)
spring.rabbitmq.dynamic=true # create an AmqpAdmin bean
spring.rabbitmq.Host= # connection Host
spring.rabbitmq.port= # connection port
spring.rabbitmq.password= # login password
spring.rabbitmq.requested-heartbeat= # requested heartbeat timeout, in seconds; zero for none
spring.rabbitmq.listener.acknowledge-mode= # acknowledge mode of container
spring.rabbitmq.listener.concurrency= # minimum number of consumers
spring.rabbitmq.listener.max-concurrency= # maximum number of consumers
spring.rabbitmq.listener.prefetch= # number of messages to be handled in a single request
spring.rabbitmq.listener.transaction-size= # number of messages to be processed in a transaction
spring.rabbitmq.ssl.enabled=false # enable SSL support
spring.rabbitmq.ssl.key-store= # path to the key store that holds the SSL certificate
spring.rabbitmq.ssl.key-store-password= # password used to access the key store
spring.rabbitmq.ssl.trust-store= # trust store that holds SSL certificates
spring.rabbitmq.ssl.trust-store-password= # password used to access the trust store
spring.rabbitmq.username= # login user
spring.rabbitmq.virtual-Host= # virtual Host to use when connecting to the broker

Spring profile を使用してリスナー定義を含むamqp-context.xml Beanをロードせず、xmlに<beans profile="development"> .. </beans>を追加する方法を見つけましたが、これは私が持っているほど柔軟性がありません。さまざまなプロファイルを定義し、それらに含まれるものを変更するには、コードを変更する必要があります。

[〜#〜] edit [〜#〜]これは私のamqp-context.xmlがどのように見えるかです:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:task="http://www.springframework.org/schema/task" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:rabbit="http://www.springframework.org/schema/rabbit"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/task
        http://www.springframework.org/schema/task/spring-task-3.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/rabbit 
        http://www.springframework.org/schema/rabbit/spring-rabbit-1.3.xsd">

    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="ignoreResourceNotFound" value="true" />
        <property name="locations">
            <list>
                <value>application.${env:xxxx}.properties</value>
            </list>
        </property>
    </bean>
    <rabbit:connection-factory id="connectionFactory" Host="${rabbit_Host}"
        virtual-Host="${rabbit_virtual_Host}" username="${rabbit_username}" password="${rabbit_password}" port="${rabbit_port}"/>   

    <!-- Connection Factory -->
    <bean id="rabbitConnFactory"
        class="org.springframework.amqp.rabbit.connection.CachingConnectionFactory">
    </bean>


    <!-- Spring AMQP Template -->
    <bean id="template" class="org.springframework.amqp.rabbit.core.RabbitTemplate">
        <property name="connectionFactory" ref="connectionFactory" />
        <property name="routingKey" value="${my_queue}" />
        <property name="queue" value="${my_queue}" />
    </bean>

    <!-- Spring AMQP Admin -->
    <bean id="admin" class="org.springframework.amqp.rabbit.core.RabbitAdmin">
        <constructor-arg ref="rabbitConnFactory" />
    </bean>

    <rabbit:listener-container connection-factory="connectionFactory" requeue-rejected="false" concurrency="10">
        <rabbit:listener ref="ProcessMessage"
            queue-names="${queue_name}" />
    </rabbit:listener-container> 

    <bean id="ProcessStuff" class="Process" />



</beans>

Application.propertiesファイルから直接キューのリッスンを管理する方法について誰かが考えていますか?お願いします?

14
Adi

Boot 1.3を待つ代わりに、次のような独自のキーをapplication-development.propertiesに追加できます。

rabbit.auto-startup=false

次に、amqp-context.xmlを次のように変更します

<rabbit:listener-container connection-factory="connectionFactory" requeue-rejected="false" concurrency="10" auto-startup=${rabbit.auto-startup}>
7
jst

いいキャッチ!私が作成しました #3587 これはSpring Boot1.3で対処されます

ありがとう!

2
Stephane Nicoll