Created
May 20, 2018 10:14
-
-
Save odedia/7a4697c07600293f1f63fccc92179d44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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