2
votes
1answer
57 views
Groovy : Closures or Methods
Hi,
I've got into the habbit of using Closures everywhere I can in place of regular methods, even when I don't need access to free variables. So, I will use this:
def addNumbers = { left, right …
0
votes
3answers
61 views
How can I add common actions to controllers without using inheritance?
I need to add common actions to a number of my controllers without using inheritance. All our controllers extend an Abstract controller and the functionality I want to include does not make sense in …
0
votes
1answer
15 views
Grails render as XML generates an unwanted class element
I am rendering a command class as XML via
render foo as XML
where foo is an instance of the command class.
This successfully returns an XML for the objects value. However, the generated XML also …
0
votes
2answers
81 views
Beginner Groovy Question:
Hi there,
I'm following the code examples in 'The Definitive Guide to Grails' by Graeme Keith Rocher, and have come across a rather unusual stumbling block.
Essentially, 2 domain classes exist - …
1
vote
1answer
33 views
JSP PageContext from a Groovlet (Groovy Servlet)
I'm trying to use Groovlets in place of JSPs in an integration framework but one of the vendor's libraries relies on the javax.servlet.jsp.PageContext available in a JSP. I found the …
1
vote
2answers
39 views
Groovy literal StringBuilder/StringBuffer
Hi,
Groovy supports a literal syntax for creating a StringBuilder/StringBuffer instead of the usual
def sb = new StringBuilder()
However, I can't seem to remember (or find on Google) the correct …
0
votes
3answers
93 views
For what kind of Applications Ruby or Groovy are better choice ?
What kind of Applications are suited
mostly for Ruby or Groovy ?
Alternatively
what problems are better addressed by
programming languages like Ruby or
Groovy ?
3
votes
5answers
294 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] flag] [(if flag …
0
votes
2answers
27 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 setter. For example,
…
0
votes
2answers
49 views
Can I write annotation in Groovy?
I know I can annotate my classes in Groovy with annotations, but can I write the annotation itself in Groovy (as opposed to just using annotation written in Java)? If so, from what version?
0
votes
2answers
127 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. I've read that …
0
votes
0answers
34 views
SoapUI Groovy Scripts
Hi ,
I'm trying to read the incoming request & set the mock response depending on a value comming in the request in soapUI 3.0. I use the following groovy script for this.
def typeElement = …
0
votes
2answers
18 views
Under what circumstances does Groovy use AbstractConcurrentMap?
(Specifically, org.codehaus.groovy.util.AbstractConcurrentMap)
While doing some profiling of our application thats mixed Java/Groovy, I'm seeing a lot of references to the AbstractConcurrentMap …
-1
votes
3answers
78 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 controller:
def userCreate = …
1
vote
1answer
93 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. Since updating to the …
