Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Transactional
- @RabbitListener(queues = "Очередь раз")
- public void getInfo(String message) throws JsonProcessingException {
- Unit unit = new ObjectMapper().readValue(message, Unit.class);
- // где то юзаем этот объект
- Unit sendingUnit = new Unit();
- // что то добавляем
- rabbitTemplate.convertAndSend("Очередь два", sendingUnit.pack());
- }
Advertisement
Add Comment
Please, Sign In to add comment