Yes with business logics included in the stored procs.
The reason behind converting stored procedures to POJOs is that currently, the bulk of the business logic of our application is in the stored procs. We want to take out the business logic from the stored procs and convert it as POJOs. As much as possible, only CRUD operations are being done on the database server side.
Originally posted by Edwin Keeton:
I'm guessing your stored procs perform basic CRUD operations?