Using Grails 2 BUILD-SNAPSHOT as my only grails installation, installed into STS 2.8.0 nightly by building and then unzipping the 'zipDist', I can create a Grails project, add a domain class and get...
Type: Posts; User: wstidolph; Keyword(s):
Using Grails 2 BUILD-SNAPSHOT as my only grails installation, installed into STS 2.8.0 nightly by building and then unzipping the 'zipDist', I can create a Grails project, add a domain class and get...
'zipDist fixed it for me; thank you for the answer and the informative/careful responses to my tedious list :)
One question: if I've generated a grails app outside of STS, what is the way to bring...
I am using STS 2.8.0M2 (nightlies) and grails-core from github (building to 2.0.0.BUILD-SNAPSHOT) so I have frequent changes to the items in the grails classpath container...
Grails 2.0.0M1 has a bug which is due to be resolved in 2.0.0.M2 (GRAILS-7799) but until then the workaround requires changing AGENT_STRING in 'startGrails'. I did that (grails 2.0.0.M1 is OK from...
I wasn't sure if I needed to mockDomain (as I do when testing a Service) to unit-test a standalone domain object from the test/unit tree, so I set up a really simple test ...
import grails.test.*...
Attempts to test my domain objects fails with:
groovy.lang.MissingMethodException: No signature of method: MyDomainObject.save() is applicable for argument types: () values: []
The test runs...