0
votes
2answers
58 views
Groovy - how to exit each loop?
I'm new to Grails/Groovy and am trying to find a node in a an xml file; I've figured out how to iterate over all of them, but I want to exit the loop when the target node is found. …
0
votes
1answer
17 views
Dynamically implement interface in Groovy using invokeMethod
Groovy offers some really neat language features for dealing with and implementing Java interfaces, but I seem kind of stuck.
I want to dynamically implement an Interface on a Gro …
0
votes
1answer
51 views
How to make swing components not resizable
Hi, I'm trying to make some components inside a JSrollPane unresizable, because content inside can grow dynamically and I must prevent it from growing over a predefined size.
My a …
0
votes
1answer
49 views
How do I enable Grails support in IntelliJ IDEA Community Edition 9.0 BETA?
The IntelliJ Groovy/Grails support in IntelliJ IDEA 8.1 is great.
However, I've recently upgraded to the new and recently open-sourced IntelliJ IDEA Community Edition 9.0 BETA. S …
0
votes
3answers
52 views
Groovy on Grails list - not working?
Removing an element from a list isn't working, which doesn't make any sense. Am I missing some special semantics peculiar to dealing with a Grails domain object list?
In controlle …
0
votes
0answers
17 views
Grails bindData exclude not excluding
I'm trying to use 'bindData' method and exclude one field like so:
bindData(person, params, [exclude: ['responseItems']]);
The 'person' variable is defined by the class 'Person' …
3
votes
2answers
83 views
Grails: Templates vs TagLibs.
In Grails, there are two mechanisms for modularity in the view layers : template and taglib.
While I am writing my own Grail app, I am often facing the same question when I need t …
3
votes
5answers
223 views
Is functional Clojure or imperative Groovy more readable?
OK, no cheating now.
No, really, take a minute or two and try this out.
What does "positions" do?
Edit: simplified according to cgrand's suggestion.
(defn redux [[current next] …
1
vote
1answer
28 views
Groovy date formatting problem
Hi!
I am developing a groovy application and I am having problems when showing a Date field.
If I use the following notation:
<g:formatDate format="dd.MM.yyyy" date="${fieldVa …
1
vote
3answers
68 views
Redirect process output to stdout
Hi,
I would like to execute foo.bat from within a Groovy program and have the resulting process' output redirected to stdout. Either a Java or Groovy code example would be fine.
…
0
votes
3answers
86 views
How can I get this snippet to work?
I'd like to port a little piece of code from Ruby to Groovy, and I'm stuck at this:
def given(array,closure) {
closure.delegate = array
closure()
}
given([1,2,3,4]) {
…
1
vote
1answer
56 views
Groovy / Grails: Enhance a Static Closure
Hey People of Groovy,
I am looking for a way to modify/change an existing closure. However, I do not wish to overwrite it; instead I would like to enhance it.
Here is a quick exa …
0
votes
0answers
17 views
Eclipse Spring Builder set properties with Groovy beans
I typically use groovy to construct simple bean but the Spring IDE plugin to eclipse fails to build when I try to set a property that is generated by groovy without an explicit set …
0
votes
2answers
45 views
Why doesn’t .collect() work in the following GString?
This works as expected in a GSP-page:
<td>${Foo.findAllByBar(bar)}</td>
But when adding a collect statement the code breaks ..
<td>${Foo.findAllByBar(bar).col …
1
vote
4answers
79 views
Groovy String to int
I have a String that represents an integer value and would like to convert it to an int. Is there a groovy equivalent of Java's Integer.parseInt(String)?
