I have a table in oracle database and a spring boot application, I want my spring boot application to listen to any change(update/insert) that happens in the table and do some operations after that.
I have seen some stack-overflow answers that suggests to use DBMS_ALERT or Oracle AQ / Oracle Streams.
Please let me know if it is possible to do that, If yes How can I implement it in spring boot application. Please suggest if there is any other way to achieve that.