Where should I place a transient domain class in a grails app?
Ie I have an Action class that will be passed about, and used, but never saved. Should this be in the grails-app/domain folder, or somewhere else?
|
Where should I place a transient domain class in a grails app? Ie I have an
| |||
|
feedback
|
|
If you want the classes to support validation, you can annotate them with | |||||
feedback
|
|
I think a CommandObject may fit the bill. These typically go in the same directory as your controllers, have the same validation features available to domain objects, but are never persisted. Great for things like search forms. | |||
|
feedback
|