Hi All,
Currently we have a program which goes sequentially on the following tasks
1. Run a SQL query(query 1) and gather results
2. Run a SQL query(query 2) and gather results
3. Do a string validation on the data(result set) - Same for the data returned in both the results
4. calls a web service for all the elements in the result set
Currently this program is taking around 8 min. I would like to make it parallel, what should be my approach. I am using Java 7
Thanks in advance