Using Spring data
is it possible to run 2 queries at the same time?
I ask as I have 2 query methods that I am calling to delete from the DB.
However I cannot run one before the other because it gives me the "ORA-02292 integrity constraint child record found"
error.
Does the @Async
annotation do what I am asking? If so, how do I use it?