| | |
| | |
|
| | | <!-- rabbitMQ配置 -->
|
| | | <bean id="rabbitConnectionFactory" class="org.springframework.amqp.rabbit.connection.CachingConnectionFactory">
|
| | | <constructor-arg value="101.37.22.173"/>
|
| | | <constructor-arg value="116.62.12.115"/>
|
| | | <property name="username" value="guest"/>
|
| | | <property name="password" value="guest"/>
|
| | | <property name="channelCacheSize" value="8"/>
|
| | |
| | |
|
| | | <rabbit:admin connection-factory="rabbitConnectionFactory"/>
|
| | |
|
| | | <rabbit:queue name="monitors_storage_data" durable="false" exclusive="false" auto-delete="false" />
|
| | | <rabbit:queue name="monitors_storage_data" durable="false" exclusive="false" auto-delete="true"/>
|
| | |
|
| | | <!--<bean id="amqpMsgListener" class="com.moral.monitor.listener.MonitorListener"/>-->
|
| | |
|