1
vote
Create grails war without version number
From the Grails Documentation, Chapter 17, Deployment
There are also many ways in which yo …
4
votes
Groovlet in Grails apps
grails install-templates
Edit src/templates/web/web.xml to include your groovlet
grails war
deploy
I've not pe …
1
vote
How to parse, persist and retrieve a string with tags separated by spaces?
If you have a Tag Table, wouldn't you have a row for each Tag?
tag.id = 1; tag.name = 'smart'
tag.id = 2; tag.name = 'funny'
tag.id = 3; tag.name = 'wonderful'
In …
3
votes
0
votes
Hibernate Criteria Question
Two quick observations:
The Grails Documentation says that a many-to-many association has to be manually coded, the default scaffolding won't do it.
You ma …
0
votes
Doing a generic <sql:query> in Grails
You could use the taglib as described. You just need to make Grails aware of it.
…
3
votes
Changing the database at runtime in Grails application
See Databases and Environments in the Grails documentation.
Also see Externalized Configuration if the above doesn't completely meet your needs.
Grails doesn't care where the DB res …
4
votes
Grails forwarding and/or redirection with parameters
Redirection is idiomatically done in a controller in Grails. See the
redirect method i …
5
votes
Convert datetime in to date
There's [unfortunately] not an "out-of-the box" method for performing this operation in Grails|Groovy|Java.
Somebody always throws in …
