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
1answer
45 views

I'm trying to loop over a XMLSlurper find statement using a list array. Can you do this?

I'm trying to loop over an expression like this changing the string 'question-hyperlink' to an item in a list I'm new to groovy and can't find a way that works. Do you really have to hard code this ? ...
0
votes
1answer
35 views

Save current url with geb

I work with tests on geb and i have problem. I need to save/print the address of the current page (function SaveUrl()). Spock Test: class TestSpec extends GebReportingSpec { def "Google"() { ...
0
votes
2answers
58 views

Recursive method not working properly in grails/groovy unit test case

MyService.class public boolean myMethod1() { boolean success = false for (1..2) { success = myMethod2() } return success } public boolean myMethod2() { int value = ...
0
votes
1answer
14 views

Having trouble with namespaces in XML lookups, using DOMCategory

When trying to lookup a certain node in an XML document, I'm having trouble with the namespaces. Here's the code I'm using: The simplified XML file: <?xml version="1.0" encoding="UTF-8"?> ...
-2
votes
0answers
44 views

Filter 2 object in list grails

i want to filter a object list. def now = new Date() def games = Game.withCriteria { between('date', now, now+7) gameRoles { eq("roleType", 1) ...
0
votes
1answer
52 views

Jenkins matrix project combination filter - how to configure the groovy expression?

I have a Jenkins multi configuration project with two axis: sbBrowser with values firefox ie chrome envConfig with values pp1 pp2 pp3 staging systemtest I have to create combination filer to run ...
3
votes
1answer
47 views

Groovy I/O performance issue

I'm not a groovy expert, just use it from time to time. One of the latest goals was to generate a very simple file containing some random data. I created the following script: out = new ...
1
vote
2answers
70 views

How to use Global Property name in my JSON input request using SoapUI?

I have a SoapUI project which contains around 60 plus services. Each service requires some input which will be changed for every execution. So I have created certain Global Properties and assign some ...
0
votes
2answers
87 views

Equals and NullPointerException

@Test public void testDoc() { String a1 = "123" String b1 = null; String a2 = null String b2 = "456"; boolean westId1 = (a1 == b1) || ((a1 != null)&& b1.equals(a1)); ...
0
votes
1answer
34 views

Gathering and rendering common data

What is the best / cleanest way to gather common data, such as data for a sidebar. In my application I will only ever have two different sets of data, depending if a User is in a Project or not. I ...
0
votes
2answers
55 views

Dynamically load jar in groovy

I have a groovy script createWidget.groovy: import com.example.widget Widget w = new Widget() This script runs great when I run it like this: $ groovy -cp /path/to/widget.jar ...
0
votes
1answer
48 views

Groovy subcollection

What is the Groovy way to get collection items without items in subcollection. For example: collection: [1,2,3,4,5,6] subcollection: [1,5,6] the result should be: [2,3,4] EDIT: It looks I'm doing ...
1
vote
1answer
52 views

Parsing Json in Groovy

I have a following json string: [ { id: '123', name: 'bla bla', type: 'Source', isLeaf: true }, { id: '3425', name: 'test test', type: 'Reference', isLeaf: false }, { id: '12678', name: 'tags', ...
1
vote
2answers
43 views

Remove item from groovy list

I am trying to remove an item from groovy list. I've tried following: List<User> availableUsers = [] availableUsers = workers for (int i = 0; i < availableUsers.size(); i++) { ...
0
votes
3answers
47 views

Parse any file type as XML

I have the following code snippet in a Gradle script (the syntax is a combination of Groovy/Java): File file = new File(filename) // Filename is being read from console def content = file.getText() ...
1
vote
1answer
72 views

Overriding Joda DateTime toString in Groovy

So I'm using the JodaTime plugin in a grails project I'm implementing and I really don't like that it spits out the ISO8601 date format when I do a toString. I've been constantly putting toString and ...
0
votes
2answers
53 views

Groovy + WebDriver: how to use a variable in xpath?

This code works: MyField = driver.findElement(By.xpath("//select/option[contains(text(), '10.11.12.13')]")) MyField.click() This code doesn't work (the element is not selected) ClientHost = ...
0
votes
0answers
42 views

IntelliJ Idea Debugger

I'm doing a step by step debugging in my Groovy code. But I don't know Why the IntelliJ Idea debugger doesn't step into the .each() method of Groovy. Can Anyone please help me sort out this problem. I ...
0
votes
1answer
61 views

Mock criteria count api grails/groovy

I have a problem while trying to unit test a service class api MyService.groovy public int myMethod() { def cr = MyDomain.createCriteria() def myDomainCount = cr.count { isNull("column1") ...
0
votes
0answers
36 views

groovy: variable scope in closures in the super class (MissingPropertyException)

I have the impression that closures run as the actual class being called (instead of the implementing super class) and thus break when some variables are not visible (e.g. private in the super class). ...
0
votes
3answers
63 views

Groovier way to parse tsv file into map

I have a tsv file in the form of "key \t value", and I need to read into a map. Currently i do it like this: referenceFile.eachLine { line -> def (name, reference) = line.split(/\t/) ...
0
votes
1answer
50 views

Modify Java sourcecode programmatically with Java or Groovy

To automate certain manual tasks in an legacy project, I need to modify existing java files from within java or groovy code. I don“t want to use RegEx, because it would be neither quick nor clean in ...
0
votes
3answers
75 views

Regex to match all lines starting with a specific string

I have this very long cfg file, where I need to find the latest occurrence of a line starting with a specific string. An example of the cfg file: ... # format: - search.index.[number] = [search ...
0
votes
1answer
36 views

Groovy regex. Matching begining of the line

I am little puzzled by Groovy regex behavior. "dog" == /dog/ - return true "dog" == /^dog/ - return false My understanding that ^ matches start of the line so second expression should return true ...
0
votes
0answers
27 views

groovy generics: calling method on super class. Type erasure

I cannot understand why the following Groovy code won't compile @groovy.transform.CompileStatic class GenericTest<T extends String> extends TreeSet<T> { public boolean add2(T key) { ...
0
votes
0answers
14 views

opennlp.groovy has NullPointerException

I am trying to get the following code snippet from GitHub to work so that I can use OpenNLP tools in Groovy scripts. (OpenNLP class from https://gist.github.com/nagaimasato/1178725) #!/usr/bin/env ...
0
votes
0answers
42 views

How to remove duplication from my groovy code

I have two similar methods. One of them prints something and one of them get something. As you can see there are a lot of duplicate code. How should I refactor it and remove this duplication ? ...
0
votes
1answer
50 views

How to give Groovy Script file path to GroovyScriptEngine?

I will want to load Groovy script file from the project resources folder..i am using this code GroovyScriptEngine gse = new GroovyScriptEngine("/src/main/resources"); Binding binding = new ...
-3
votes
0answers
40 views

Groovy ws-lite to access NTLM authenticated server [closed]

I am trying to access a SOAP service on a IIS served machine from my grails application using groovy ws-lite. When I send the SOAP message I always get a HTTPClientException with 401 Unauthorized ...
0
votes
1answer
34 views

Call Closure defined in other script

What is the correct and simplest way to access a closure defined within another script in Groovy. This might not be the best design, but I have a closure defined in SomeScript.groovy bindingC = { ...
0
votes
0answers
31 views

SoapUI groovy script calculation for W3C formatted datetime

How can I do the following using Groovy Script in SOAPUI? I have two strings which contain datetime in W3C format e.g. 2011-05-06T10:10:10Z. I want to subtract one datetime from another and return a ...
0
votes
1answer
58 views

Grails Cache Plugin: Cacheable key using only two of three params

With a restful api call such as myserver/api/mydata?req?%7Bcode%3A%2244%22%2C%20name%3A%22sally%22%2C%20version%3A7%7D where the parameters passed in are code=44, name=sally, and version=7, and I ...
0
votes
1answer
43 views

Gradle / Groovy properties

I would like to control 'global' config in Gradle build scripts using external property files on each build machine (dev, ci, uat,...) and specify the filename with a command line argument. e.g. ...
1
vote
1answer
38 views

Gradle: Force Custom Task to always run (no cache)

I wrote up a custom Gradle task to handle some dependency resolution on the file system where the paths are configurable. I want tasks of this type to always run. It seems though they only run once, ...
1
vote
1answer
45 views

QueryDsl, elegant way to make method cascades NULL safe with Java or Groovy

If often run into NPEs when traversing cascading methods that could be null somewhere a long the path. For instance I'd like to query the customer's "salutation" property.. ConstructorExpression ...
-1
votes
1answer
38 views

(How) can i bind my program to different IPs? [closed]

My Groovy application is sending some HTTP-Requests and receiving the results using URL.getText(). This app is deployed to an Ubuntu server which has different IPv4 addresses. I'd now like to run ...
1
vote
0answers
66 views

Create Dynamic VO Object And LOV and set groovy for value In Oracle ADF Model

I created dynamic view run time and I have one transient field. I created LOV for this transient field and fill both this field and another from LOV view object. In edit mode i need to load LOV value ...
-3
votes
0answers
46 views

How to Invoke Java class Method From Groovy Script? [closed]

I am using Groovy Script in my web application . I will want to call Java methods from inside Groovy Script ? How can achieve it? As i have class ABC.java and it have add,delete,update methods these ...
-5
votes
0answers
62 views

Run Project on Localhost [closed]

I have created a project using Grail, Groovy, Intellij IDEA. Now I want to run this project in my localhost (Windows environment). When I will just open my PC and write localhost or project-name on ...
1
vote
0answers
32 views

Groovy: Compile + Embed

The goal is Start with a scripting language that uses Groovy for preprocessor directives (entire preprocessor langauge) Parse that script with Antlr 4 (surround regular script with prints and strip ...
0
votes
1answer
60 views

Pass parameters to all views

I have a play application (Play 1.2.4). In each page in my application I want to have access to the logged in user (using groovy). So I can perform permission check etc. I tried to put this in the ...
-1
votes
0answers
73 views

Jasper Reports Shows Error java.lang.NoSuchMethodError

HI i have a program that printing some transaction using Jasper Reports this is my Java code: private void jButtonPrintActionPerformed(java.awt.event.ActionEvent evt) { String resourcepath = ...
4
votes
1answer
93 views

Is there anything like GroovyScriptEngine and GroovyClassLoader in Scala?

I noticed scala is jsr 223 compliant https://issues.scala-lang.org/browse/SI-874 ... but is it able to do stuff like GroovyScriptEngine ? I consider adding a scala scripting support to our product so ...
-7
votes
0answers
69 views

Run JAVA project in localhost(Windows environment) [closed]

I have created a projects using Grail, Groovy, IntelligIDEA. Now I want to run this project in my localhost(Windows environment). When I will just open my PC and write localhost or project-name on ...
0
votes
2answers
31 views

Groovy: how to get properties declared in base class

In the following code, I need all the properties available in Child class (i.e. foo, bar). I am not interested in all other properties added by groovy. class Parent {def foo} class Child extends ...
1
vote
1answer
37 views

Groovy equivalent to Scala trait stackable modifications?

I have been going through the Programming Scala book(by Martin Odersky,Lex Spoon,Bill Venners ed1) and came across traits. A section that I find interesting is stackable modifications. The example ...
2
votes
1answer
55 views

using build-test-data plugin with Grails 2

I'm trying to use the build-test-data plugin (v. 2.0.4) to build test data in a unit test of a Grails 2.1.4 application. The app has the following domain classes class Brochure { static ...
0
votes
1answer
54 views

What is available in the withRest closure?

The REST Client of HTTP Builder has a withRest closure. How can I tell what is available in this closure: withRest(uri: domainName) { what,parameters,are,available,here -> } The source ...
0
votes
0answers
32 views

How to get the raw response and URL from HttpResponseDecorator

The REST Client of HTTP Builder returns a HttpResponseDecorator. How can I get the raw response out of it (for logging purposes)? EDIT (some code might be handy): withRest(uri: domainName) { ...
0
votes
1answer
39 views

Groovy AntBuilder file sorting

groovy AntBuilder style select sorted files: def ant = new AntBuilder(); def files = ant.first(count:1){ sort(){ fileset(dir:/R:\goagent2/){ depth max:0 ...

1 2 3 4 5 123