So, we're starting with grails in our company and we're creating this application that uses ExtJS as the frontend and Grails in the backend.
Because ExtJS works exclusively with JSON for populating datatables and such, we're presented with the challenge of creating these interfaces that will send and receive JSON objects to ExtJS in a restful manner.
After deliberating on our domain model, we settled on one. Quickly, we realized that some of the tables in the system will be composed of the information from more than one domain object.
After some searching around we found the JSON RESTful API for GORM plugin which basically exposes a RESTful interface for any given domain object.
This brings us to the main point of the question.
The way I see it, there are two ways to proceed.
1) Create a controller specific for each data table in ExtJS that will have the different actions and within each action it will create or receive the JSon object to do the CRUD on the different domain objects the data table uses.
This would be more time consuming, in my view. It's an option anyway.
2) The other option is to the the aforementioned plugin by creating a "composite" domain object specific for the datatable we want to populate (each attribute in this object is a column in the datatable). After this, just expose it using the JSON RESTful API for GORM plugin which basically takes care of the whole CRUD actions for us.
Is there even a way to create an object like the one we want in our domain model without actually creating more database tables in the backend?
I believe we're on the right path, we just need a little bit of guidance from experts :)
thanks in advance!