vote up 2 vote down star

I'm giving a presentation to a Java User's Group on Groovy and I'm going to be doing some coding during the presentation to show some side-by-side Java/Groovy. I really like the GroovyConsole as it's simple and I can resize the text easily.

I'm wondering if there is anything similar for Java? I know I could just use Eclipse but I'd rather have a smaller app to use without having to customize a view. What's the community got?

Screen shot of GroovyConsole:

alt text

flag

4 Answers

vote up 1 vote down check

DrJava is your best bet. It also has an Eclipse plugin to use the interactions pane like GroovyConsole.

link|flag
vote up 0 vote down

One good reason for not using something like the Groovy Console (wonderful though it is) is when you want to test what something would be like in Java, without actually going to the trouble of a boilerplate class and main method to run snippets of code. There are some differences between what Groovy does and what Java does. It'd be nice to have a simple way to test something and know for sure it will work when you put it in Java.

link|flag
vote up 1 vote down

Why not use the GroovyConsole ? Groovy accepts the vast majority of Java syntax

link|flag
thanks for the tip. Actually that is what I ended up doing. My first thought was to keep the Groovy code and Java code in seperate editors, but by using the GroovyConsole I was able to show a POJO and and edit it in place to make it a POGO. – codeLes Oct 10 '08 at 15:01
vote up 1 vote down

try beanshell. its a scripting wrapper over java. http://www.beanshell.org/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.