Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
192 views

“Groovy Console” for Python?

I often use ipython (or the regular python shell) to test python code snippets while coding, and it's been very useful. One shortcoming of this, though, is that if I want to test a multi-line segment ...
2
votes
1answer
46 views

with Groovy Console, is it possible to reload changed files in classpath?

I often want to test methods I'm developing in a Groovy class independently, and use the Console to do so, like: groovyConsole -cp mygroovyfiles However I have not yet been able to figure out how ...
1
vote
1answer
179 views

Can't load oracle.jdbc.driver.OracleDriver in groovysh?

I am trying to go through a tutorial on GroovySQL. The database I need to connect to is an Oracle database. So I downloaded ojdbc6.jar and put it in ~/.groovy/lib/. If I put the following script in a ...
1
vote
1answer
287 views

GroovyConsole ActiveMQ error: NoClassDefFoundError: Could not initialize class org.apache.activemq.ActiveMQPrefetchPolicy

I am trying to run a very simple ActiveMQ client script in GroovyConsole. I've included activemq-all-5.5.0.jar and slf4j-api-1.5.11.jar through the Script > Add Jar to ClassPath menu. I see ...
1
vote
1answer
2k views

SoapUI Groovy Scripts

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 = ...
1
vote
3answers
474 views

Listing subclasses doesn't work in Ruby script/console?

This works: >> class Foo >> def xyz() >> Foo.subclasses >> end >> end => nil >> class Bar < Foo >> end => nil >> class Quux < Bar ...
1
vote
3answers
600 views

How do you configure GroovyConsole so I don't have to import libraries at startup?

I have a groovy script that uses a third party library. Each time I open the application and attempt to run my script I have to import the proper library. I would like to be able to open ...
1
vote
1answer
619 views

Running a JUnit test from Groovy Console

How can I use the Groovy Console to kick off junit tests? (Currently using Groovy 1.6.0)
0
votes
1answer
74 views

How do you read multiple lines using readLine in Groovy through SpringSource Eclipse?

I am trying to read multiple inputs from the console in Groovy 1.7.10 in Spring Source Suite 2.7.1 (multiple in.readLine()), but the console only seems to allow me to input the first entry, puts in a ...
0
votes
0answers
24 views

How can i ask the user whether they wish to end the game i created or carry on playing

creating a chess game want to give the user an option after each move whether they wish to continue playing the game and if they say no it ends how would i do that?? help
0
votes
1answer
68 views

Find a String version of a GroovyConsole Script in a Heap Dump

I've accidentally ran a script with an infinite loop in GroovyConsole. :-\ For the sake of Murphy's Law, I haven't save my work during 3 or 4 hours. So, before killing the GroovyConsole Process, I've ...
0
votes
2answers
296 views

Beginner Groovy Question:

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 - Bookmark & ...
-1
votes
1answer
48 views

with qualifying of any of the return sattement do the loop break groovy

Do the loop terminates when it qualifies the return statement? even when value is null?