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.
-2
votes
1answer
29 views
Groovy - Collection only returns a single value
I've got a small code snippet that loops through a node and grabs all its properties.
I can get this to work if I set one variable to grab the properties values (except it has a weird [] surrounding ...
0
votes
1answer
6 views
How to read null delimited records in Groovy
I'd like to read multiline records that are terminated by null records, like so :
<MARQUE><AR_CP>N3</AR_CP>
<Classif>07</Classif>
...
1
vote
0answers
28 views
Clonned Select2 is not responding
I am trying to clone a row which contains select2 tool ,when i clone that row using jquery the clonned select2 is not responding.In image given below first select2 which is original is working fine ...
0
votes
1answer
41 views
groovy - findAll getting only one value
I'm struggling to find examples of findAll with groovy. I've got a very
simple code snippet that gets the property of a node and outputs it's
value. Except I'm only getting the last value when I'm ...
0
votes
1answer
19 views
Using one views gsp in another views gsp
So my question is, hopefully, very simple.
I have two different domains with corresponding controllers/view folders etc.
I want to call the second _form.gsp from the first _form.gsp (within a ...
1
vote
1answer
20 views
How to set objects while functional testing grails with Spock
I've got a sample Domain such as this
class User {
String username
String password
def userHelper
static contraints = {
username(nullable: false, blank: false)
...
0
votes
0answers
18 views
Update an Eclipse plugin to a development version
How do you update a plug-in from a release version to a development version in Eclipse?
I'm dealing with a problem in the groovy-eclipse plugin that looks like it's fixed in the development version ...
0
votes
2answers
21 views
groovy only grabbing first element of loop
I've got a very straightforward code snippet. That for some reason is
only grabbing the first element of the loop when I try to output it in
my jsp. JcrUtils.getChildNodes returns a NodeIterator that ...
0
votes
0answers
19 views
Gradle: how to get user input
I'm currently using the Gradle Plugin for Eclipse (STS). I'm trying to get some user input to configure a task. With the daemon, there are problems to read user input. So, I tried to use a Groovy Pop ...
0
votes
1answer
57 views
Attach watermark in each page of PDF
In my grails project I am using grails rendering plug-in to convert a GSP into PDF. PDF have 3 to 5 pages.
Now I need to attach a watermark as bottom right of each page of the PDF.
I have no idea ...
0
votes
0answers
17 views
The Cucumber JVM's (Groovy) “World (Hooks)” object mixin and Intellij navigation
I am developing cucumber scenarios using Cucumber JVM (Groovy) in intellij. Things are much better than doing the same in eclipse I must say.
I'd like to resolve one small problem to make things even ...
1
vote
0answers
27 views
Is there a 'groovyish' way to hack/use the java.lang.instrument package in Groovy Scripts?
This StackOverflow question discusses how to instrument a java object to get its size at run time. Is there a way to leverage these features in a groovy script?
Or should I just go ahead and ...
1
vote
2answers
32 views
Adding A Method to the Global Name Space
I've written a method that I can use ClassName.methodName(args).
How can I make it so I can use methodName(args).
I tried monkey patching Object like so:
class Object {
def methodName(args) {
...
0
votes
1answer
32 views
Groovy Compilation error :Unrecognized Windows Sockets error
Environment :
Jenkins Server (Linux)
Senkins slave agent (Windows )
Build :Gradle
Project : EasyB ,Selenium,Groovy
I am getting a compilation error while trying to compile my easyB + selenium ...
0
votes
1answer
34 views
The right way to prepare SQL statements with parametrized text search
Suddenly I've realized that while this works in groovy just like it is expeceted:
Sql.newInstance(connectionParams).rows("SELECT FROM ITEMS WHERE id = ?", [200])
this won't work
...
2
votes
2answers
66 views
Groovy , how to pass in inline variables,i.e ${variable} statement from file?
I have an interesting problem in Groovy. Hope someone can help me.
Basically I am using Groovy Sql. I need to select multiple tables in different databases. My second query depends on other query's, ...
0
votes
0answers
60 views
Is there anything like dynamic closure is out there in groovy? if yes then what is the difference between dynamic closure and normal closure
What exactly the dynamic closure is? and what is the difference between a normal closure and dynamic closure?
Can someone provide some code example of the dynamic closure along with some brief ...
1
vote
2answers
69 views
Create dynamically closures in Groovy from a String object
i would like to create a query with the Criteria API in Grails (GORM).
The query will have to be something like this:
MyEntity.createCriteria().list{
assoc{
parent{
eq("code", val)
...
-1
votes
0answers
22 views
reliable open source rtp and rtcp library [closed]
Hello i have a question.
Is there any reliable open source library or libraries for each one of rtp and rtcp with documentation?
I want to create, read, write and every thing can be done by rtp and ...
0
votes
1answer
26 views
Groovy - execute ssh and provide password
I know that there are AntBuilder and JSch, etc. but I want do something like this - without any dependencies:
def sshArray = ["ssh root@11.11.11.11 -p 111 '/etc/init.d/tomcat7 stop'", ...]
def env = ...
2
votes
1answer
49 views
Groovy/Java map sort
I have percentage values in map with flags, like-
[44.4: true, 0.0: false, 44.4: false, 38.9: false, 0.0 false]
I want to sort them in descending order. The code that I'm using loses the duplicate ...
2
votes
1answer
29 views
Difference between Groovy String variable replacement
When looking at examples of variable substitution in GStrings, I have noticed two difference syntaxes. This can be seen here: Groovy Templates
This has the example:
def text = 'Dear "$firstname ...
1
vote
1answer
19 views
Behavior of setting default value to a Groovy bean property
I have a simple Groovy bean that looks something like this:
class GroovyBean {
Integer id
String title
}
This bean is then used on a JSP page to support a basic HTML form with a text input ...
2
votes
1answer
37 views
Using Groovy to run Oracle SQL with a multi-pass query
any idea on how to choose the correct table when writing to file on a multi-pass sql query. i have had success when doing it with a single pass query. have any of you had similar experience.
1
vote
1answer
36 views
Mixed Groovy + Java project causes string syntax clashes
I have a project with Java and Groovy files, wanting to compile both into .class.
My Groovy classes use Java classes. One of Java classes contains annotation
@ConfigPartDescriptor(
name = "Mail ...
0
votes
1answer
24 views
Gradle making deployment jar file
I am trying to create deployment jar file for multi-module project. I am using this code to create it:
subprojects.each { subproject -> evaluationDependsOn(subproject.path)}
task allJar(type: Jar, ...
2
votes
1answer
51 views
Result of Replaced/Overriden Parameterless Method Not Passed to the Constructor
I'm trying to change the behaviour of the constructor of a groovy class by replacing a method in that class which is used to set a property but the properties are not getting set with the expected ...
0
votes
0answers
37 views
How to get list of changed files since last build in Jenkins/Hudson with git/gerrit
Is there any mechanism I can get the changes between two builds in Jenkins in git/gerrit environment, I am getting all changes using all changes plugin, but I want get a nice set of change between ...
1
vote
1answer
23 views
Push to talk over cellular(PoC) client and server
Is there any open source PoC server and client software(Framework) for java to manage SIP and support RTP and RTCP with App Packet messages preferebly support TBCP?
Our project is to send and receive ...
0
votes
2answers
60 views
Use Hashmap to check if a string is present
Sorry for the newbie question, but I've never used Hashmaps before so I was a bit confused
I was trying to do something like this based on a post i saw here
I don't exactly get value means (is the ...
0
votes
2answers
41 views
Groovy interop with primitive types
I'm using a small Groovy script that calls a Java library. The Java library has a method m(String,int), where the second parameter is the int primitive type.
The script below creates a new int ...
0
votes
1answer
51 views
Grails Sorting Data
I have a Problem with the sorting!
I want the newest Info ( lastUpdated), and all entrys from this guy!
def showRegisterUser = {
def now = new Date()
def days = 7
if (params.getDays) {
...
0
votes
0answers
27 views
GroovyWrapper script seems to be broken
The original GroovyWrapper script seems to be broken.
It contains the following line:
fileset( dir: '.', includes: scriptBase + '*.class' )
However, this means that only classes are included which ...
1
vote
2answers
52 views
Groovy mixin on Spring-MVC controller
I'm trying to use Groovy mixin transformation on a spring-mvc controller class but Spring does not pickup the request mapping from the mixed in class.
class Reporter {
@RequestMapping("report")
...
8
votes
2answers
112 views
Groovy: What's wrong with this “Hello World” program?
This does not work:
$ groovy -e 'println "Hello, world!"'
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
script_from_command_line: 1: unexpected char: 0xFFFF @ line ...
0
votes
0answers
22 views
Can the Groovy library for Jenkins be changed?
I am using the soapUI maven in Jenkins (am at the latest and greatest release)
There seems to be an issue with the groovy 1.8.5 which is fixed in the later versions of Groovy (2.1.5 for example).
Is ...
0
votes
1answer
20 views
groovy markup builder HTTP redirect
I am using groovy markup builder and want to create an automatic HTTP redirect if the person lands on the page. I have tried the following and the when I build my war and test it, the page just ...
2
votes
2answers
44 views
Groovy - Multi Table Spin to File
I am running a multi table SQL call that kicks out to a file.write. The code works in SQuirreL and even in Groovy until I get to the file.write("") lines (the last4 lines of the code). The first ...
2
votes
1answer
57 views
Groovy Closure explanation
I'm familiar with normal groovy closures like these
def printSum = {a,b ->
println a+b
}
printSum(5,7) // 12
However, I came across code from SpringWS plugin that I have a hard time ...
0
votes
1answer
26 views
Groovy: Got StackOverflowError when override invokeMethod with a closure
I'm trying to enhance my Grails project with Groovy AOP approach. However I always got StackOverflowError if I override invokeMethod with a closure. Here is my test code, I can reproduce the error ...
1
vote
1answer
57 views
Groovy: Cannot cast object 'true' with class 'java.lang.Boolean' to class 'java.io.File'
I don't understand why I am getting the following error. Any thoughts?
I am getting error:
Cannot cast object 'true' with class 'java.lang.Boolean' to class 'java.io.File'
This is the code ...
1
vote
1answer
40 views
In the Grails configuration how do I access variables in other environments?
If I have a list environment variable in grails in one environment, how do I modify it on the cascade to other environments?
For instance, in my quartz configuration I added the following,
quartz {
...
0
votes
1answer
42 views
Griffon applications - memory usage
I have a question referring to Griffon.
Is there a way to decrease memory consumption of griffon applications?
Actually the sample griffon application process (just single window with
label) takes in ...
0
votes
1answer
75 views
+50
Groovy dataset findAll AST not available for closure
I have following code connecting to mysql. dataset findAll method giving the error message.
code:
def people = sql.dataSet("PERSON")
people.add( firstname:"James", lastname:"Strachan", id:1, ...
0
votes
1answer
32 views
Parse xlsx file row by row into String[]
def Reader = new CSVReader(new FileReader("/Users/me/myfile.csv"));
while ((row = Reader.readNext()) != null) {
How can I do the above with the same format for an xlsx file. I've looked into some ...
0
votes
2answers
34 views
Modify groovy method call with if statement
I want to have a method call where if !row[connected].equals("")
then
Event(id: "event_${row[eventid]}", externalId: "event_${row[eventid]}", connected: row[connected]){
but if ...
0
votes
2answers
72 views
How to access a user defined Grails Project Package Name using the domain class string name
What we are attempting to do is create one grails application with multiple package names. Each package name will represent a different business entity and functionality.
Essentially multiple ...
0
votes
0answers
23 views
How to configure groovydocs properly?
I'm trying to generate groovydocs but can't seem to get it set it up correctly. I researched for a long time and tried to piece together everyone's hints and ways throughout the web but nothing seems ...
0
votes
2answers
30 views
Groovy - ORA-00933: SQL command not properly ended
Why am I getting this error from my code? This runs in SQuirreL but I get the "ORA-00933: SQL command not properly ended" in Groovy. Arrrrrrgh! Please help me, you knowledge is greatly appreciated ...
0
votes
2answers
32 views
Add value to enum for testing switch's default case
Given the following enum:
public enum SupportedLoanProcessor {
PRE_AUTHORIZED,
ACCURED_INTEREST
}
And a switch working on a value if the type SupportedLoanProessor
switch(processorType){
...




