groovy « Tomcat « JSP-Servlet Q&A





1. Groovy servlet can't find JAR files in Tomcat    stackoverflow.com

I've created a groovlet that will act as a sort of HTTP proxy. It accepts GET requests and then makes web service calls based on the URL provided in the request. Here's ...

2. Running tomcat jasper task (jspc) with gradle build    stackoverflow.com

I'm trying to compile our jsp files using jspc within gradle but am getting an exception. Here is the pertinent gradle section

//tomcatHome is defined in gradle.properties
ant.tomcatHome = "${tomcatHome}"
ant.webAppDir = "${webAppDir}"
ant.importBuild 'jspc.xml'
test.dependsOn jspc
And ...