增加activemq测试例子
This commit is contained in:
parent
76cc211303
commit
2ddc558989
|
@ -0,0 +1,40 @@
|
|||
package com.zheng.cms.controller;
|
||||
|
||||
import com.zheng.common.util.JmsUtil;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.jms.core.JmsTemplate;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import javax.jms.Destination;
|
||||
|
||||
/**
|
||||
* 消息队列controller
|
||||
* @author shuzheng
|
||||
* @date 2016年11月24日
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/activemq")
|
||||
public class ActiveMQController extends BaseController {
|
||||
|
||||
private static Logger _log = LoggerFactory.getLogger(ActiveMQController.class);
|
||||
|
||||
@Autowired
|
||||
JmsTemplate jmsTemplate;
|
||||
|
||||
@Autowired
|
||||
Destination defaultQueueDestination;
|
||||
|
||||
@RequestMapping("/send")
|
||||
@ResponseBody
|
||||
public Object send() {
|
||||
for (int i = 0; i < 1000; i ++) {
|
||||
JmsUtil.sendMessage(jmsTemplate, defaultQueueDestination, "消息" + i);
|
||||
}
|
||||
return "success";
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue