Can you use the package name to differentiate between classes in grails?
e.g. com.business.appName.DomainClass and com.business.appName.foo.DomainClass?
I think that this causes problems as grails needs unique class names. If you try this out it tries to overwrite the view gsps for the com.business.appName.DomainClass when you try to generate the views for the com.business.appName.foo.DomainClass
Is there a way to have the same domain class name in different packages?