RabbitMQ+Spring Quartz 实现消息的定时发送和接收

因公司需要使用RabbitMQ作为中间件实现消息的发送和接收。同时加入Spring Quartz 实现消息的定时发送。所以做了个Dome.只是做个演示。
主要有4个项目。
这里写图片描述
两个消费者一个生产者,一个调度者。

生产者

生产者比较简单,只是把要发送的消息保存到数据库。在界面上显示所有的消息。点击全部发送并没有发送消息只是修改消息的状态为NOT_SEND.
界面截图
RabbitMQ+Spring Quartz 实现消息的定时发送和接收_第1张图片

调度者

调度者定时重数据库查询出消息然后发送。封装了一个ScheduleJob实现任务的添加,删除,更新,启动,停止的管理界面。在状态中修改这个状态为开启的,那么发送消息的任务将执行。
调度者的RabbitMQ配置文件


<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	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/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.4.xsd">

    
	<context:property-placeholder location="classpath:application.properties" />
	
	
	<rabbit:connection-factory id="rabbitConnectionFactory"
		host="${mq.host}" port="${mq.port}" username="${mq.username}"
		password="${mq.password}" />

      
	<rabbit:admin connection-factory="rabbitConnectionFactory" />

	
	<rabbit:template id="rabbitAmqpTemplate"
		connection-factory="rabbitConnectionFactory" exchange="${mq.queue}_exchange"
		routing-key="30000" />
 
beans>

界面截图
RabbitMQ+Spring Quartz 实现消息的定时发送和接收_第2张图片

消费者

负责监听消息处理消息,修改消息的状态。消费者的界面通过js定时器不停的请求服务器,展示所有已经接受到的消息。
消费者的rabbitMQ配置文件


<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	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/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.4.xsd">

    
	<context:property-placeholder location="classpath:application.properties" />
	
	
	<rabbit:connection-factory id="rabbitConnectionFactory"
		host="${mq.host}" port="${mq.port}" username="${mq.username}"
		password="${mq.password}" />

      
	<rabbit:admin connection-factory="rabbitConnectionFactory" />

   <rabbit:topic-exchange name="${mq.queue}_exchange"
		durable="true" auto-delete="false">
		<rabbit:bindings>
			<rabbit:binding queue="test_queue" pattern="${mq.queue}_patt" />
		rabbit:bindings>
	rabbit:topic-exchange>


	
	<rabbit:queue id="test_queue" name="${mq.queue}_testQueue_1" durable="true" auto-delete="false" exclusive="false">
	 	<rabbit:queue-arguments>
	 				<entry key="x-message-ttl">   
	 				    <value type="java.lang.Long">60000value>
	 				entry>
	 		rabbit:queue-arguments>
	rabbit:queue>

    
	<bean name="rabbitCumstomerListener" class="com.synnex.jms.listener.RabbitCumstomerListener"/>

	
    <rabbit:listener-container
		connection-factory="rabbitConnectionFactory" acknowledge="manual">
		
		<rabbit:listener queues="test_queue" ref="rabbitCumstomerListener" />
	rabbit:listener-container>
	
beans>

界面截图
RabbitMQ+Spring Quartz 实现消息的定时发送和接收_第3张图片

代码资源文件中有sql文件,你只需把修改数据源,修改rabbitMQ的url为自己的地址,把4个项目放到Tomcat中在浏览器中输入
http://localhost:8081/RabbitMQ-Producer/index
http://localhost:8081/RabbitMQ-Quartz/index
http://localhost:8081/RabbitMQ-Customer/index
http://localhost:8081/RabbitMQ-Customer-2/index

源码下载,点击这里

你可能感兴趣的:(web)