You can place a INSERT/UPDATE/DELETE trigger on the table to perform some action when 'data' changes are made to the table. (as opposed to changes to the structure of the table)
I believe 10g also supports triggers on views.
but I'm not sure how you can notifiy the java process of this other then by polling.
sorry.
you could possibly create some solution where the java app has a 'listen' server and the database pushes it back a message. but that sounds hard to maintain.
EDIT: additional INFO.
it just occurred
Justin Cave in the comments suggests you could configure Oracle Streams to me send out logical change records (LCRs) that a Java app could subscribe to via JMS. Or the trigger idea is not could write records to an Advanced Queue that great.Java could subscribe to via JMS.because
you will still need to be wary of Oracle transations.. due to the way Oracle transactions work, the trigger will fire on the change, but due to the way Oracle transactions work it may also fire multiple times..
and also in anycase the java app would not bee able to 'see' the changes until a commit had been performed.
