4
votes
6answers
2k views
Getting Groovy’s Grape Going!!!
I've tried to use the new Groovy Grape capability in Groovy 1.6-beta-2 but I get an error message;
unable to resolve cl …
3
votes
1answer
435 views
Grails MySQL MaxPoolSize
How do I increase the maxPoolSize in Grails when using mysql? It appears to be using a default connection pool only 8 connections.
…
1
vote
3answers
776 views
uploaded files - database vs filesystem, when using Grails and MySQL
I know this is something of a "classic question", but does the mysql/grails (deployed on Tomcat) put a new spin on considering how to approach storage of user's uploaded files.
I like usi …
1
vote
4answers
221 views
How to render ‘how long ago something happened’ using Groovy or Grails?
I would like a method/closure which works like this
println TimeDifference.format( System.currentMilliSeconds()-1000*60*60*24*7*6 )
and prints
1 …
2
votes
1answer
78 views
Grails, finding available views (.gsp’s) at runtime
Is there an easy way for a grails application to find the available list of views (*.gsp) available at runtime.
Ideally a solution will work for both application servers which unpack the …
1
vote
How do you change the default homepage in a Grails application?
Add this in UrlMappings.groovy
"/"
{
controller = "yourController"
action = "yourAction"
}
By configuring the URLMappings this way, the home-page of the app will b …
0
votes
Getting Groovy’s Grape Going!!!
Ok. Seems like this a short working demo (running from the groovyConsole)
groovy.grape.Grape.initGrape()
@Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,2.3.0)')
publ …
2
votes
