Tagged Questions
The groovlet tag has no wiki summary.
2
votes
1answer
101 views
Opening a local file in Groovy
I want to use a File object to read a local file in the same directory as a groovlet. However, using a relative path to the file (either "example.txt" or "./example.txt") doesn't do the trick. If I ...
1
vote
2answers
371 views
Does Sitemesh work with Gaelyk ? Does anybody have a working guide?
Has anyone been able to get sitemesh and gaelyk working together? This seems to be possible as mentioned here ...
1
vote
2answers
3k views
Groovlet + Tomcat: “unable to resolve class” when importing libraries
I'm having some trouble running a groovy servlet (groovlet) in tomcat that imports a library class. When I don't import anything the groovlet works correctly, but if I do import something that I ...
0
votes
1answer
56 views
Set Groovlet session object within a class?
I have a Groovy class, MyRequest, that is used to process each HTTP request. In the constructor, this class sets an instance variable, _session, to be the value of request.getSession(true) (where ...
0
votes
0answers
68 views
Encoding issue in form in groovlet
I have:
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" pageEncoding="UTF-8"/>
...
Name: ${params.name}
<form action="hello.groovy" accept-charset="UTF-8" ...
0
votes
1answer
782 views
Groovy servlet can't find JAR files in Tomcat
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 the code I've got so far:
...
0
votes
1answer
39 views
How do I delegate building to a method?
I am writing a Groovlet and would like to delegate part of the HTML builder to a method but am having trouble getting it to work. Below is what I have:
def pages = [page1: html.p("page1")]
html.html ...
0
votes
1answer
132 views
Shorter URL in Groovlet
Consider the following Groovlet:
html.html
{
head {
title("Groovy Test")
}
body {
center {
img(src:"getPlot.groovy?name=name&value=value")
}
}
}
Is there a ...
0
votes
1answer
437 views
Groovlet not working in GWT project, container : embedded Jetty in google plugin
I am working on a GWT application which uses GWT-RPC.
I just made a test groovlet to see if it worked, but ran into some problems
here's my groovlet
package groovy.servlet;
print "testing the ...
0
votes
1answer
463 views
JSP PageContext from a Groovlet (Groovy Servlet)
I'm trying to use Groovlets in place of JSPs in an integration framework but one of the vendor's libraries relies on the javax.servlet.jsp.PageContext available in a JSP. I found the ...