1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| $ mvn exec:java -Dexec.mainClass=org.torapture.test.Producer WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 (file:/usr/share/maven/lib/guice.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$1 WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release [INFO] Scanning for projects... [INFO] [INFO] -------------------< org.torapture.test:kafka-test >-------------------- [INFO] Building kafka-test 1.0-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- exec-maven-plugin:3.0.0:java (default-cli) @ kafka-test --- SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. offset: 0, partition: 3, topic: test-topic offset: 1, partition: 3, topic: test-topic offset: 2, partition: 3, topic: test-topic offset: 0, partition: 0, topic: test-topic offset: 0, partition: 8, topic: test-topic offset: 1, partition: 8, topic: test-topic offset: 0, partition: 9, topic: test-topic offset: 1, partition: 9, topic: test-topic offset: 0, partition: 6, topic: test-topic offset: 0, partition: 7, topic: test-topic [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.848 s [INFO] Finished at: 2021-01-11T18:56:03+08:00 [INFO] ------------------------------------------------------------------------
$ mvn exec:java -Dexec.mainClass=org.torapture.test.Consumer WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 (file:/usr/share/maven/lib/guice.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$1 WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release [INFO] Scanning for projects... [INFO] [INFO] -------------------< org.torapture.test:kafka-test >-------------------- [INFO] Building kafka-test 1.0-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- exec-maven-plugin:3.0.0:java (default-cli) @ kafka-test --- SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. topic = test-topic, partition = 3, offset = 0, key = 3, value = value is 3 topic = test-topic, partition = 3, offset = 1, key = 4, value = value is 4 topic = test-topic, partition = 3, offset = 2, key = 9, value = value is 9 topic = test-topic, partition = 0, offset = 0, key = 5, value = value is 5 topic = test-topic, partition = 8, offset = 0, key = 2, value = value is 2 topic = test-topic, partition = 8, offset = 1, key = 6, value = value is 6 topic = test-topic, partition = 9, offset = 0, key = 1, value = value is 1 topic = test-topic, partition = 9, offset = 1, key = 7, value = value is 7 topic = test-topic, partition = 6, offset = 0, key = 0, value = value is 0 topic = test-topic, partition = 7, offset = 0, key = 8, value = value is 8 [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 10.663 s [INFO] Finished at: 2021-01-11T18:56:17+08:00 [INFO] ------------------------------------------------------------------------
|