1. Update hibernate-entitymanager.jar (3.3.2 GA) in
2. Add hibernate-validator.jar (3.0.0 GA) in
3. Changes to g:render taglib.
4. Issues with domain properties.
my_domain.properties = another_domain.properties. This doesn’t work anymore in Grails 1.0.3, at least in some cases. Had to manually copy properties.
5. There are definitely issues with complex hibernate mapping involving legacy system. A particular hibernate relationship was throwing javax.persistence.PersistenceException with Grails 1.0.3. We couldn’t figure out the actual reason, had to make the relationship transient and manually manage it.
6. Changes to taglib g:actionSubmitImage.
The following works fine in Grails 1.0.1.
In Grails 1.0.3, you will need to change to
7. Issues with blank spaces in directories in Windows:
This is the nasty one and can drive you crazy. You may have problems running the app or executing tests. Errors such as java.util.zip.ZipException: The system cannot find the path specified or error trying to scan
* Re-install Java in directory without blank spaces (c:\Java\..)
* By default, the project is built in ${user.home}/.grails. We can change this location by specifying the user.home property in command-line such as grails -Duser.home=c:\ run-app or grails -Duser.home=c:\ test-app
Grails 1.0.3 seems much faster than Grails 1.0.1 and is probably worth the trouble.
0 comments:
Post a Comment