1
vote
groovy inside ant: how to access refids from grooy that are defined by ant tags
According to the Groovy Ant Task documentation, one of the bindings for …
3
votes
How to convert string result of enum with overridden toString() back to enum?
The class overrides "toString()" - so, to get the reverse operation, you need to override valueOf() to translate the output of toString() back to the Enum values.
…
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
2
votes
What are some advantages of duck-typing vs. static typing?
Duck typing cripples most modern IDE's static checking, which can point out errors as you type. Some consider this an advantage. I want the IDE/Compiler to tell me I've made a stupid programmer t …
2
votes
How can I determine if a URL redirects?
A quick & dirty groovy script to show the concepts -- Note, this is using java.net.HttpURLConnec …
3
votes
How do I auto load a database jar in Groovy without using the -cp switch?
Summarized from Groovy Recipes, by Scott Davis, Automatically Including JARs in the ./groovy/lib Directory:
Create .groovy/lib in your login dir …
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 …
9
votes
Python vs Groovy vs Ruby? (based on criteria listed in question)
Just to muddy the waters...
Groovy give you access to Java. Java has an extremely rich set of APIs/Libraries, applications, etc.
Groovy is embeddable, although easiest in Java. …
0
votes
How to access java-classes in the default-package?
You can use packages in the Groovy code, and things will work just fine.
It may mean a minor reorganization of code under grails-app and a little bit of a pain at …
1
vote
Groovy in Ant build.xml (with Java classes)
@VonC is correct about including Groovy scripting in your Ant build.
To expand a bit:
To compile .groovy and .java sources together for use in the …
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 …
