Skip to content

Instantly share code, notes, and snippets.

@odedia
Created May 20, 2018 10:14
Show Gist options
  • Select an option

  • Save odedia/7a4697c07600293f1f63fccc92179d44 to your computer and use it in GitHub Desktop.

Select an option

Save odedia/7a4697c07600293f1f63fccc92179d44 to your computer and use it in GitHub Desktop.
@Component
@Slf4j
class BeerHandler {
@Autowired
BeerRepository repo;
@StreamListener(target=Sink.INPUT)
public void handleBeerMessage (String message) {
log.info("Received beer: {}", message);
this.repo.save(new Beer(null, message, 10.0));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment