Does the code from the stored procedure (from a mysql db) execute asynchronous from the code I execute in a spring service?
Will the the code from my Spring Service resume only when the queries of the Stored Procedure are finished executing?
If the code executes asynchrounously, how can I force the code from the Spring Service to execute only after the code from the stored procedure is is done?
Obviously yes. When you call a stored procedure from service then the rest of the execution will only start after the stored procedure is executed.