Example of streaming events using a plain JDBC connection for Oracle Database Transactional Event Queues (TxEventQ).
The jdbc.events package package implements the JDBCBatchProducer class to send events, and the JDBCConsumer class to receive. These classes use PL/SQL procedures defined in the jdbc-events.sql script, specific the produce_json_event
and consume_json_event
procedures, respectively.
The JDBCEventStreamingTest class implements a test scenario using Oracle Database Free to produce and consume events:
- The JDBCBatchProducer writes a series of records to a queue.
- Three JDBCConsumer instances run in parallel to consume events.
- Each consumer inserts events into a database table after receiving them.
- The test class verifies all events were received and inserted into the database.
You can run the test with Maven (mvn test
). Note that you need Java 21+ and a Docker-compatible environment to run the test. After the test is complete, you should see output similar to the following, though the ordering may be different do to parallelization:
[PRODUCER] Published all events. Shutting down producer.
[CONSUMER 1] Consumed 30 events. Shutting down consumer.
[CONSUMER 3] Consumed 27 events. Shutting down consumer.
[CONSUMER 2] Consumed 29 events. Shutting down consumer.