0

Consider the following Groovlet:

html.html
{
  head { 
    title("Groovy Test")
  }

  body {
    center {
      img(src:"getPlot.groovy?name=name&value=value")
    }
  } 
}   

Is there a better way to generate the URL? I'm looking to eliminate the explicit var/vals from the URL.

dromodel
  • 9,581
  • 12
  • 47
  • 65

1 Answers1

0

You could use UrlRewriteFilter for this. It's like mod_rewrite but implemented as a servlet filter.

traneHead
  • 986
  • 10
  • 15