Skip to content

Instantly share code, notes, and snippets.

@odedia
Created May 18, 2018 19:43
Show Gist options
  • Select an option

  • Save odedia/7449aa91593c81c7682e04f84b372f3d to your computer and use it in GitHub Desktop.

Select an option

Save odedia/7449aa91593c81c7682e04f84b372f3d to your computer and use it in GitHub Desktop.
@RestController
@Slf4j
class BeerNamesController {
@Output(Source.OUTPUT)
@Autowired
private MessageChannel messageChannel;
@Autowired
RestTemplate restTemplate;
@PostMapping("/beer-me-up")
public void write(@RequestBody BeerDTO beer){
log.info("Beer is {}", beer);
this.messageChannel.send(MessageBuilder.withPayload(beer.getName()).build());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment