Tagged Questions
The groovyshell tag has no wiki summary.
4
votes
3answers
1k views
Grails shell not seeing domain objects
I'm a grails newbie (and a groovy newbie), and I'm working through some grails tutorials. As a new user, the grails shell is a really useful little tool for me, but I can't figure out how to make it ...
2
votes
1answer
237 views
Does GroovyShell cache the compiled scripts?
I plan to embed groovy in my application and use GroovyShell programatically - I will run the same script several times with different parameters.
Does GroovyShell caches the compiled script or does ...
2
votes
3answers
2k views
Running a script from Groovy
In order to get my setup a bit closer to "one click deployment", I would like to use groovy scripts to start/stop other processes controlled by bat scripts, running in different parts of the ...
2
votes
3answers
823 views
How can I convince GroovyShell to maintain state over eval() calls?
I'm trying to use Groovy to create an interactive scripting / macro mode for my application. The application is OSGi and much of the information the scripts may need is not know up front. I figured I ...
1
vote
1answer
175 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
139 views
How to list all binding variables with GroovyShell
I'm very new to Groovy. How can I list all variables I passed to Binding constructor ?
Considering I have following :
@Test
public void test() {
List<String> outputNames = ...
1
vote
1answer
118 views
Stopping the execution of a Groovy script
I am embeding Groovy runtime in my code and I would like to have the ability to interrupt it. I don't have control of the scripts that are going to run. I read about groovy.transform.ThreadInterrupt ...
1
vote
0answers
50 views
Embedding groovy.lang.GroovyShell & missing command support
Browsing the Groovy source there appears to be a few separate shells:
groovy.lang.GroovyShell
groovy.ui.InteractiveShell
The IShell class appears to have lots of commands available such as quit, ...
1
vote
2answers
143 views
Groovy Element comparison
Is this madness, or is this Sparta?
groovy:000> b = [1,2,3,4]
===> [1, 2, 3, 4]
groovy:000> b.count { !it.equals(4) }
===> 0
groovy:000> b.count { !it == 4 }
===> 0
...
1
vote
3answers
382 views
Using GroovyShell as “expression evaluator/engine” (or: How to reuse GroovyShell)
I'm using GroovyShell as an "expression evaluator/engine" inside my program. It accepts two inputs: (a) one or more init scripts (b) user-defined script. Both are then concatenated at runtime as big ...
1
vote
0answers
56 views
Are there any other Grash like enhanced Groovy shells?
Grash seems to be an interesting approach to taking groovy to the next step in terms of connectivity and monitoring of java applications. However it seems to never have taken off and remained a toy. ...
1
vote
2answers
358 views
What are the pros and cons of using GroovyClassLoader vs. GroovyShell
I need to run some external code from my Java application that will be updated frequently and orthogonally to the rest of the application. As I do not to re-deploy the entire application for every ...
0
votes
1answer
49 views
Create a key:value pair dynamicly
I have the following groovy-script:
#!/usr/bin/env groovy
def files = [
'file-1.bat' :
[
'content-1-1',
'content-1-2',
'content-1-3'
...
0
votes
3answers
83 views
How to bypass confirmation prompts of an external process?
How can I convert this Perl code to Groovy?
How to bypass confirmation prompts of an external process?
I am trying to convert a Perl script to Groovy. The program is loading/delete maestro (job ...
0
votes
1answer
86 views
MissingPropertyException in groovysh
I run groovysh, and type the following code:
groovy:000> String s = "Hello"
===> Hello
groovy:000> s
ERROR groovy.lang.MissingPropertyException:
No such property: s for class: ...
0
votes
1answer
93 views
Groovy/Grails: is there a way to make .evaluate() at all safe?
I have a situation where I need to determine eligiblity for for one object to "ride" another. The rules for the vehicles are wildly confusing, and I would like to be able to change them without ...
0
votes
1answer
98 views
Problems with GroovyShell and propertyMissing()
I'm having problems using propertyMissing() together with GroovyShell
I have the files
/**
* @file FooScript.groovy
*/
abstract class FooScript extends Script {
def propertyMissing(String ...
0
votes
1answer
226 views
How to add imports to groovysh on startup?
I'm working on a project where I'd like users to experiment with Java classes on Groovysh. I'd like to make it convenient for them and want to import certain packages by default, when groovysh starts ...
0
votes
1answer
249 views
groovysh and groovy classes visibility and annotation parsing
I started using groovy intensely to prototype everything. This is amazing.
But I faced the problem with groovy shell.
Next code I run with
groovy filename.groovy
and everything works as expected.
...
0
votes
4answers
940 views
ANSI color support using Groovy on Windows XP
Trying out the examples found on pleac.sf.net, I'm not able to get an example of ANSI colors to work on my WinXP box (Works fine on MacOS). What I've found is that on my WinXP machine, in both cygwin ...