up vote 2 down vote favorite
share [g+] share [fb]

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

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
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
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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