I've met a scenario:
saveorupdatesome data in a target table by hibernate- there is a trigger on the target table which will be executed before
insertorupdateoperations of the target table selectout this record by hibernate
But I find that the fields which have been modified by the trigger are not really fetched out. Is this related with transactions commit of Hibernate (flush() has already be called) or Hibernate cache? thanks.