opensas
opensas

Reputation: 63525

Is it possible to work with GSP (groovy server pages) without the whole grails stuff?

I'd just like to play a little bit with groovy

I was thinking about developing my own-tiny web framework, something very simple and manageable...

So i'd like tou use GSP pages whtout having to install the whole grails stuff, with all its dependencies and behind-the-scenes frameworks...

can anyone provide me detailed instructions on what to download, where to install, how to configure tomcat, etc...


some info I've found so far

Groovy Servlets

GSP Tag Reference

this is pretty close to what I'm looking for, but still don't know what to download, where to save it, etc...

http://groovy.codehaus.org/GSP

And look what it says here...

GSP are not maintained as a standalone module. But it has been forked and reintegrated in Grails.

?

Upvotes: 13

Views: 8529

Answers (5)

Cagatay Kalan
Cagatay Kalan

Reputation: 4126

Please check Rabbtor. We provide easy GSP integration to Spring MVC applications with customizations to Grails' tag libraries. Most common tag libraries are supported but some Grails dependent ones were removed.

Upvotes: 1

Scott Warren
Scott Warren

Reputation: 1601

I am not sure the taglib functionality is in the Groovlet stuff.

Upvotes: 0

opensas
opensas

Reputation: 63525

Well, it seems like it wasn't so hard in deed as I expected

just had to copy groovy-all-1.5.7.jar

from C:\java\groovy-1.5.7\embeddable

to C:\java\Tomcat 6.0\lib

and add the following lines to C:\java\Tomcat 6.0\conf\web.xml

  <!-- Groovy mapping - sas 2009-01-29 -->
<servlet>
    <servlet-name>Groovy</servlet-name>
    <servlet-class>groovy.servlet.GroovyServlet</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>Groovy</servlet-name>
    <url-pattern>*.groovy</url-pattern>
</servlet-mapping>

<servlet>
    <servlet-name>GroovyTemplate</servlet-name>
    <servlet-class>groovy.servlet.TemplateServlet</servlet-class>    
</servlet>
<servlet-mapping>
    <servlet-name>GroovyTemplate</servlet-name>
    <url-pattern>*.gsp</url-pattern>
</servlet-mapping>

and it worked!!!

I haven't even downloaded the grails installer...

could it really be that easy???

here are some links

http://noor.ojuba.org/2008/06/groovlets-setting-up/

Upvotes: 17

codeLes
codeLes

Reputation: 3069

This JavaWorld article might lend a hand:

Shed the weight with Groovlets

Not all web applications require a full stack framework (like Grails, Rails, Spring MVC, etc). Don’t get me wrong, the aforementioned hip frameworks are themselves lightweight (and quite powerful to boot); however, they do have an associated cost (albeit much much lower than rolling the same functionality by hand). For instance, some applications don’t require a data store (consequently, a large portion of Grails — that is, Hibernate — for example, wouldn’t be utilized). Other applications don’t really require a powerful view technology (simple services don’t require JSPs or GSPs, for instance).

Upvotes: 3

Hates_
Hates_

Reputation: 68731

Standalone GSP is on the current Grails roadmap. In the mean time see the GSP module project page: https://gsp.dev.java.net/

Upvotes: 4

Related Questions