Created
September 15, 2011 14:47
-
-
Save krams915/1219435 to your computer and use it in GitHub Desktop.
spring-rabbit.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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:p="http://www.springframework.org/schema/p" | |
| xmlns:context="http://www.springframework.org/schema/context" | |
| xmlns:rabbit="http://www.springframework.org/schema/rabbit" | |
| xmlns:cloud="http://schema.cloudfoundry.org/spring" | |
| xsi:schemaLocation=" | |
| http://www.springframework.org/schema/beans | |
| http://www.springframework.org/schema/beans/spring-beans-3.1.xsd | |
| http://www.springframework.org/schema/context | |
| http://www.springframework.org/schema/context/spring-context-3.1.xsd | |
| http://www.springframework.org/schema/rabbit | |
| http://www.springframework.org/schema/rabbit/spring-rabbit-1.0.xsd | |
| http://schema.cloudfoundry.org/spring | |
| http://schema.cloudfoundry.org/spring/cloudfoundry-spring-0.8.xsd"> | |
| <context:property-placeholder location="/WEB-INF/spring.properties" /> | |
| <rabbit:queue id="eventQueue"/> | |
| <rabbit:queue id="errorQueue"/> | |
| <rabbit:topic-exchange name="eventExchange"> | |
| <rabbit:bindings> | |
| <rabbit:binding queue="eventQueue" pattern="event.general.*"/> | |
| <rabbit:binding queue="errorQueue" pattern="event.error.*"/> | |
| </rabbit:bindings> | |
| </rabbit:topic-exchange> | |
| <rabbit:template connection-factory="rabbitConnectionFactory" exchange="eventExchange"/> | |
| <rabbit:admin connection-factory="rabbitConnectionFactory"/> | |
| <rabbit:listener-container> | |
| <rabbit:listener queues="eventQueue" ref="monitorController" method="handleEvent"/> | |
| <rabbit:listener queues="errorQueue" ref="monitorController" method="handleError"/> | |
| </rabbit:listener-container> | |
| <bean id="rabbitConnectionFactory" class="org.springframework.amqp.rabbit.connection.CachingConnectionFactory" | |
| p:username="guest" p:password="guest" p:port="5672"> | |
| <constructor-arg value="localhost" /> | |
| </bean> | |
| <!-- Cloud-based | |
| <cloud:rabbit-connection-factory id="rabbitConnectionFactory"/> --> | |
| </beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment