MVC - Business Logic
- by BriskLabs Pakistan
I have created a MVC based simple java application. its helps the user to add records through data forms to database..... i want that the data that i put into the database as a record is worked upon i.e by performing calculations on it.
the original data should remain unaffected. while the new data after calculations performed must be stored as a new entity record into database.
Where should i write the code for this background calculation .. as it is the rules and business logic... in a new java beans file...
Please guide.
regards