On a Mac with JDK and all Groovy necessities installed, how can Groovy files be served through a web server through the browser like PHP and Apache?
What else do I need to have installed? (Web Server, etc.)
How can I get that web server to show Groovy like Apache does with PHP?
Before getting into Grails I am interested in learning and running Groovy alone. I want to make a simple site with just Groovy code, replacing PHP.
Thank you.
You can write servlets in Groovy:
http://groovy.codehaus.org/Groovlets
You need to deploy them in a Java web container, like Tomcat, for example.