I've noticed that in section "7 Services" in the "Creating your first Grails Application" guide some line of code seems to be missing:
Now, let’s use our new service.
Edit grails-app/controllers/org/grails/guides/VehicleController.groovy (the scaffolded controller we generated earlier), and add the property shown below:
grails-app/controllers/org/grails/guides/VehicleController.groovy
I guess the code signature of the show method is missing here? As the max property does not exist by default for the show action (only does for the index action).
I've noticed that in section "7 Services" in the "Creating your first Grails Application" guide some line of code seems to be missing:
[1] points to the Transactional line, I guess it should say something with "def ..." here.
Also something else seems to be wrong here:
I guess the code signature of the show method is missing here? As the max property does not exist by default for the show action (only does for the index action).