1
vote
1answer
193 views
Can generic XML by parsed as nicely as simple XML in Groovy?
Given a nice, simple XML structure, XmlSlurper() can allow me to read values from it very easily.
def xml = "<html><head><title>groovy</title></head>&l …
2
votes
3answers
84 views
Overriding grails.views.default.codec=’html’ config back to ‘none’
If I leave grails.views.default.code='none' in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: ${myValue?.encodeAsHTML()} …
2
votes
How do you parse a web page and extract all the href links?
Assuming well-formed XHTML, slurp the xml, collect up all the tags, find the 'a' tags, and print out the href and text.
input = """<html><body>
<a href = "http://www. …
1
vote
How to check if element in groovy array/hash/collection/list?
If you really want your includes method on an ArrayList, just add it:
ArrayList.metaClass.includes = { i -> i in delegate }
…
1
vote
What does it mean for a programming language to be “on rails”?
As said above, Rails and Grails provide conventions for web application development -- naming your pieces a certain way and putting them in the right places get your application working by default …
1
vote
Adding a method to a domain class
If you want your method to appear to be more like a property, then make your method a getter method. A method called getFullName(), can be accessed like a property as ${person.fullName}. Note the …
4
votes
0
votes
Hidden features of Groovy?
Closures can make all the old try-finally games of resource management go away. The file stream is automatically closed at the end of the block:
new File("/etc/profile").withReader …
4
votes
Is there a groovy equivalent to the beanshell source() method?
You can assemble all the parts of your scripts into a String, then have a GroovyShell object evaluate your script. I picked this up from Venkat Subramanium's DSL examples.
part1 = …
1
vote
Specify order of fields in DDL generated from GORM classes?
There doesn't appear to be a way to specify the ordering, but you could always create your own tables as you want them and provide name mappings in your domain classes.
You could also let GORM crea …
4
votes
Dynamic languages - which one should I choose?
I found Groovy to be a relatively easy jump from an extensive Java background -- it's sort of a more convenient version of Java. It integrates really nicely with existing Java code as well, if you …
1
vote
Running a script from Groovy
Groovy added an execute() method to plain old String, so try this:
println "ls -la".execute().text
…
1
vote
Overriding grails.views.default.codec=’html’ config back to ‘none’
I may have a solution. I'm not sure how accepted it is, though.
I can set the default codec for expressions to HTML, but then use <%=myValue%> notation in GSP instead of ${} expressions …
0
votes
How iterate xml-nodes with Groovy ?
it.@dueDate is referencing a "dueDate" attribute, not node. Second, you're looking for "2007-02-01..." in your code, which should have been "2007-02-11..." to match an actual node in your input XM …
2
votes
Overriding grails.views.default.codec=’html’ config back to ‘none’
To summarize the various levels at which the codec can be applied:
Set Config.groovy's grails.views.default.codec='html' to get HTML escaping by default on all ${expressi …
