TestController.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package me.zhengjie.modules.test;
  2. import com.alibaba.fastjson.JSONObject;
  3. import me.zhengjie.config.rabbitmq.test.SendTemplate;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RestController;
  8. import java.text.ParseException;
  9. import java.text.SimpleDateFormat;
  10. import java.util.Date;
  11. import java.util.HashMap;
  12. import java.util.Map;
  13. @RestController
  14. @RequestMapping("/api/send")
  15. public class TestController {
  16. @Autowired
  17. public SendTemplate sendTemplate;
  18. @GetMapping("/send")
  19. public void testSend() throws ParseException {
  20. Map<String,Object> map = new HashMap<>();
  21. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
  22. Date date = new Date();
  23. String timestamp =sdf.format(date);
  24. System.out.println("timestamp:"+timestamp);
  25. SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
  26. String dateNowStr = simpleDateFormat.format(date);
  27. System.out.println("时间date"+dateNowStr);
  28. map.put("seq",Long.valueOf(timestamp));
  29. map.put("date",dateNowStr);
  30. map.put("shopname","餐厅");
  31. JSONObject jsonObject = new JSONObject(map);
  32. sendTemplate.sendMessage(jsonObject);
  33. System.out.println("消息發送成功success"+jsonObject);
  34. }
  35. @GetMapping("/send1")
  36. public void testSend1(){
  37. Map<String,Object> map = new HashMap<>();
  38. map.put("seq",1);
  39. map.put("date","2021-12-09 00:00:00");
  40. map.put("shopname","111");
  41. sendTemplate.sendOrederMessage(map);
  42. System.out.println("消息發送成功success"+map);
  43. }
  44. }