Groovy is an object-oriented programming language for the Java platform. It is a dynamic language with features similar to those of Python, Ruby, Perl, and Smalltalk. It can be used as a scripting language for the Java Platform.

learn more… | top users | synonyms

0
votes
0answers
36 views

JMS message truncated with SoapUI and Groovy via Hermes

I have tried to read JMS messages from a IBM Websphere queue with the following code: import com.eviware.soapui.impl.wsdl.submit.transports.jms.JMSConnectionHolder import ...
0
votes
2answers
35 views

How to integrate Groovy WIth ZK Framework Application?

I want to integrate Groovy with my ZK Framework web application .Any one know how we can integrate Groovy in ZK project?
0
votes
0answers
48 views

What technologies are important to learn with Grails? [closed]

I have been reading a lot about Groovy and Grails lately, and the books I'm reading mention things like Spring, Hibernate, JPA, etc. quite a bit. Is it important for a Grails developer (and relative ...
0
votes
2answers
63 views

How do I pass arguments to a Groovy 2.0 script?

I have 2 scripts, where I am trying to test passing an argument, and it fails. I examined the documentation for GroovyScriptEngine but it doesn't seem to handle the case where I want to pass a arg ...
1
vote
2answers
45 views

How to make configslurper delegate method call to caller class

I want to create a groovy class og script like this: //... def slurper = new ConfigSlurper().parse(someFile) //... //The exact method declaration def methodCall(def arg){ //Whatever i want to do } ...
0
votes
2answers
52 views

reg ex expression, just need to split on comma

Test code here. I want to augment my current regex to split on commas String test = "This Is ,A Test" println(test) String noSpace = test.replaceAll("\\s","") println(noSpace) String[] words = ...
1
vote
1answer
50 views

Include classes in a groovy script

How can I include a few classes in a Groovy script? (This question has nothing to do with REST, but I use REST to put the question in the right context) Background: I am developing a CLI in groovy ...
1
vote
1answer
73 views

groovyConsole throws java.lang.reflect.InvocationTargetException when starting

I had just installed groovy in Ubuntu Studio 12.10, from the Ubuntu's Software center, and I'm trying to run the GroovyConsole, but when I execute "groovyConsole" it throws an exception: ...
0
votes
1answer
105 views

Subsequent calls to Geb Spock Test from GroovyConsole fail with UnreachableBrowserException

I'm running the below script (a GebReportingSpec test case) from within GroovyConsole.exe. It runs properly the first time, when GroovyConsole is launched. It opens up FF, runs the scenario, and then ...
1
vote
1answer
98 views

Where should Grails Command objects be placed in the project structure?

I have a class called LoginCommand in domain/my/package/name class LoginCommand { String emailAddress String password } My question is why is a table be auto generated in my database for ...
0
votes
0answers
33 views

Explain this JUnit Groovy error related to TypeChecked annotation?

When I enable Groovy Type Checking Extensions on my JUnit project, it fails with this error that is hard to understand. The test runs fine if I don't enable the TypeChecked annotation but fails when ...
0
votes
1answer
95 views

How to create Set in groovy script for SOAP ui to be able to reuse it in my test cases?

I am testing object coverage for certain reporting solution. I have hundreds of reports and I need to see if set of objects used in those reports covers the set of all possible objects. I figured out ...
1
vote
0answers
47 views

Groovy Log Ant Output w/ Java.util.logging

I'm trying to include Ant output in my regular log file. I have: def log = Logger.getLogger("ScriptName") def fileHandler = new FileHandler(logFileName) fileHandler.setFormatter(new ...
0
votes
2answers
74 views

Using the Xwiki WYSIWYG editor in Grails .gsp files?

I'm using Grails for one of my projects, and I've got the Xwiki rendering plugin (see http://grails.org/plugin/xwiki-rendering) installed. Now I wonder whether there is any way to use the xWiki ...
0
votes
1answer
29 views

GroovyShell debug script from classpath

this did help me quite alot for debugging Groovy scripts when invoked via GroovyShell. However, this still only works, when the script is loaded via fully qualified file name (e.g. ...
6
votes
3answers
53 views

Groovy 'Peeking' ahead with an iterator?

I have various scenarios in loops where I would 'peek' or 'skip' ahead while iterating through items for processing. One scenario is I'm enumerating through lines of a file, and there is a ...
1
vote
0answers
34 views

Long-lasting groovy compilation in eclipse

I'm having problem with compiling groovy project in eclipse. It takes about 15-20 mins. to compile 13 groovy files. It seems like there is some kind of loop or what. When I run maven build, I did not ...
1
vote
2answers
58 views

IntelliJ hightlights as error a working code in Griffon

Below is a snippet from a working code taken from the Groovy in Action book. As you see below, IntelliJ sees it as error. Why? See picture below:
0
votes
1answer
35 views

file type differences for griffon when using IntelliJ

Why IntelliJ recognizes groovy files for Controller and Model as groovy class, but for View - as groovy script?
1
vote
1answer
37 views

changing startup MVC group in Application.groovy issue

I've created new Groffin module using IntelliJ. I was prompted for create-app command. Creating a module was fine, and as you know, by default, when you ran an app, it shows applet with default ...
1
vote
1answer
41 views

The findResults method in Groovy seems not to work on a String Array

I tried to invoke method "findResults" on a split String, but got a compilation error. Splitting a String returns a String Array, which I thought would be regarded as a Collection in Groovy. Other ...
0
votes
1answer
40 views

Inject a Groovy Closure into Expando that acts as Property

I have a class that extends Expando and gets injected with dynamic properties. class Dynamo extends Expando { } Dynamo dynamic = [ firstName: 'bob', lastName: 'dobbs' ] I'd like to create a ...
1
vote
1answer
72 views

groovy sublist removal

I have a list: def clc = [[1, 15, 30, 42, 48, 100], [58, 99], [16, 61, 85, 96, 98], [2, 63, 84, 90, 91, 97], [16, 61, 85, 96], [23, 54, 65, 95], [16, 29, 83, 94], [0, 31, 42, 93], [33, 40, 51, 56, ...
0
votes
1answer
131 views

Logging in Groovy Script

I have a basic Groovy script, and I'm looking to create logs as simply as possible. I want the message to go to stdout, as well as a log file, and each entry in the log file would have a timestamp. I ...
-1
votes
1answer
132 views

Groovy script working in Groovy console but throwing error in SoapUi Groovy Script

I am trying to send an email that contains a Test Step result in SOAPUI using Groovy script. I first wrote the code on my Groovy Console and it worked fine. When I copied and pasted it in SOAPUI ...
0
votes
1answer
29 views

How to extract namespace from XSD?

I have an XSD that I want to use in serializing my domain objects into XML. I'm using StreamingMarkupBuilder to generate the XML, but I want to be able to extract namespaces out of the XSD to use in ...
0
votes
1answer
44 views

XmlSlurper Append node with namespace

I am trying to append node to my request using xmlslurper Service.appendNode{ ifx:DepAcctId{ if (acctId!="<!-->"){ifx:AcctId("123")} } } This results in <DepAcctId> ...
0
votes
1answer
23 views

xmlslurper not coying namespace declarations

I am having this XML, <soapenv:Envelope xmlns:v2="http://ns1/" xmlns:ifx="http://www.somenamespace.org/IFX_150"> <soapenv:Header></soapenv:Header> <soapenv:Body> ...
0
votes
1answer
16 views

How to specify a StreamingMarkupBuilder tag name at runtime?

I'm trying to build an XML document using StreamingMarkupBuilder. I don't know what the element's tag name is until runtime, so I am trying to find a way to specify it in ...
0
votes
0answers
52 views

Groovy static compilation

Can I write 100% static code using groovy? even if I am using standard libs? How do I enable 100% static compilation application wide?
1
vote
1answer
22 views

Leaf nodes in a nested map

Given a nested map like this: def map = [group: [group_name: 'test', group_color: 'red']] is there a way to turn it into this: ['group-group_name': 'test', 'group-group_color': 'red'] The map ...
0
votes
1answer
39 views

Consuming web service

I'm calling a web service like this (using rest plugin): withRest(uri: "http://server.com") { def response = post(path: '/webservice', query: [q: 'test']) // process response } and getting ...
0
votes
3answers
67 views

How can I set in build.gradle the groovy nature of an Eclipse project?

After running gradle cleanEclipse Eclipse on the project it loses the Groovy nature. How can I set this nature automatically, or simply to say to the Gradle to leave it alone. Edit: According do ...
3
votes
2answers
110 views

how do I build a tree hierarchy from a list in groovy using recursive closure?

I defined the recursive domain class in grails: class Work { String code String title String description static hasMany = [subWorks:Work] static mappedBy = [subWorks: 'parentWork'] Work ...
0
votes
1answer
41 views

How to convert an SQL Datetime value to an XML datetime Value in Groovy Script

I'm new to Groovy script and I was wondering how I could convert a value I got from a SQL database to and XML value? For example: I have a variable start_date which contains '2013-04-13 14:34:08' ...
0
votes
0answers
40 views

Antbuilder copy script rename the destination filename if it exists

Am planning to get rid of mule fileutils from my code and replace it with antbuilder groovy script code for move and rename a file when doing a copy of a file to a directory.I am having a problem ...
0
votes
1answer
47 views

groovy parse local html file

I am working on a groovy script that will get all the local html files and parse certain tags in them. I tried using something like html clean and it just is not working. I tried to read each line but ...
1
vote
1answer
45 views

GPathResult ..presence or absence of a node

My GPathResult can have a name node in one of the 3 ways 1) name node is present and has a value ex: John 2) name node exists, but has no value in it. 3) No name node exists at all. In Groovy ...
0
votes
4answers
82 views

Dynamically creating a query based on params being passed to a controller

In my task management application, users should be able to filter tasks based on : assignedTo, priority, status and/or dueDate I am not sure on how to create a dynamic query in that it will build a ...
1
vote
1answer
56 views

What is the logic of @Rule(JUnit) declaration and assignment in a Groovy class

Trying some variants of rules creation in a groovy file, I have come to the thought, that @Rule doesn't describe DECLARATION, but ASSIGNMENT. So, the runner, when loading the test, tries every rule ...
0
votes
1answer
55 views

Error running Griffon app in IntelliJ, but it works from command prompt

There's an exercise with mortageCalc application at paragraph 3.6.1 in the Griffon in Action book. Environment: Win 7 Pro, 64-bit IntelliJ IDEA ver 12.1 Griffon-1.2.0 JDK 1.6 I have ...
0
votes
1answer
49 views

Groovy: Add node to NodeChildren

I am new to Groovy and somehow struggling with the syntax. I have an object of type NodeChildren (in groovy.util.slurpersupport) which represent an XML structure like that: <?xml version="1.0" ...
1
vote
0answers
69 views

Adding custom grails configuration helper methods?

I have a configuration parameter in my BuildConfig.groovy that requires I put a lot of directories in for each plugin I have. I like to create a simple method that will generate all of those ...
0
votes
1answer
34 views

groovy and spring getting started guide

I am looking to learn to gr1oovy with spring framework to access the database. I googled didn't find getting started code for spring and groovy. Is there similar code for spring and groovy like below ...
0
votes
0answers
22 views

Taking strings and turning them into XML references

In Groovy, I am trying to take a string that contains an XML reference such as "person.name.first" and turn it into a an XML reference using XmlSlurper. The dots are the difficult item - cannot ...
0
votes
1answer
103 views

UnitTest (groovy + grails) - Cannot teardown metaclass

I'm having a problem when I try to clean the class. void testFileExists() { FileObject file = EasyMock.createMock(FileObject.class) VfsFileSystemManager.metaClass.getFile = {String s, String a ...
0
votes
1answer
57 views

Passbook APN certificate failing (Java/Groovy)

I'm trying to write a service in Grails to send push notifications to update passbook passes. I got to the point where I could test to see if the code to connect to the APN server was working, ...
0
votes
2answers
47 views

@Rule declaration causes error on a debug attempt

A groovy JUnit test class has only one static declaration: @Rule public static ErrorCollector errorCollector; After an attempt to launch the test in debug mode an exception raises: ...
0
votes
1answer
56 views

Is it possible to use classes compiled by Gradle buildSrc in main Groovy project?

Classes compiled by buildSrc/build.gradle are not resolved at runtime when they are used in main PROJECT classes. My Groovy project structure looks like this: -PROJECT -buildSrc/ ...
3
votes
1answer
57 views

Groovy: Timeduration-Subtraction evaluated from string

My script reads a string from a file and evaluates it to work as TimeDuration within TimeCategory. If the string starts with a "-" it throws an Exception. My reduced script: import ...

1 3 4 5 6 7 123