I have an existing system - COBOL + DB2(Mainframe).
I am trying to create a new system - Java + DB2(Mainframe).
At the moment, I am trying to use Java to execute stored procs (on the DB2 mainframe). The stored procs pull data and that I am trying to return as the result of a RESTful web service. Dataset is running into 2 million or so. My system would be fine if it can handle 10 million.
I know multiple ways of creating Java based RESTful web service, however I have not handled this amount of data earlier i.e. 10 million. Can anyone please suggest what would be the best tool / framework (in the Java realm) to handle this amount of data.
I have already gone through the following links
I am polling this group to see if there are other options available? Thanks.