removed println
This commit is contained in:
parent
3768f88437
commit
c8f36e78b7
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ public class BewegingConsumer {
|
||||||
public void consume(String body) {
|
public void consume(String body) {
|
||||||
try {
|
try {
|
||||||
Beweging beweging = objectMapper.readValue(body, Beweging.class);
|
Beweging beweging = objectMapper.readValue(body, Beweging.class);
|
||||||
System.out.println(beweging);
|
|
||||||
bewegingRepo.persist(beweging);
|
bewegingRepo.persist(beweging);
|
||||||
} catch (JsonProcessingException e) {
|
} catch (JsonProcessingException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue