5
votes
2answers
246 views
Avoiding Groovy/Grails internals while debugging in IntelliJ Idea
I'm using IntelliJ Idea 8.1.2 for Grails development. The dynamic nature of Groovy is giving me a hard time debugging my code: I keep ending up in the internals of Groovy/Grails, i.e. CachedMethod, …
3
votes
1answer
565 views
Externalizing Grails Datasource configuration
Grails 1.x allows using external configuration files by setting the grails.config.locations directive. Is there a similar approach available for externalizing the database configur …
0
votes
1answer
265 views
Is Netbeans 6.7 incapable of debugging Groovy closures in a Grails application?
It seems to be possible to debug Grails applications in the recently released Netbeans …
1
vote
1answer
146 views
Liferay portlets on Grails, strengths + weaknesses?
I'm interested in the possibility of developing Liferay portlets on Grails, using the Grails Portlets plugin. I recko …
1
vote
Showing spinner.gif in ajax call on loading time in grails
The same for jQuery (this was actually bundled in the Grails jQuery plugin):
$(document).ready(function() {
$("#ajax-area").bind("ajaxSend", function() {
$(this).fadeIn( …
0
votes
UTF-8 only in Grails database tables
Most MySQL installations default to latin1, so if not instructed otherwise, the driver will go by the default values. It should suffice to prepend the charset directives in the connection URL, for …
