是否可以在没有所有 grails 内容的情况下使用 GSP(groovy 服务器页面)?
我只是想玩一点 groovy
我正在考虑开发我自己的小型 Web 框架,一些非常简单且易于管理的东西...
所以我想使用 GSP 页面而不需要安装整个 grails 东西,及其所有依赖项和幕后框架...
任何人都可以向我提供有关下载内容、安装位置、如何配置 tomcat 等的详细说明...
我到目前为止找到的一些信息
这与我正在寻找的内容非常接近,但仍然不知道要下载什么、保存在哪里等等...
看看这里说了什么......
GSP 不作为独立模块进行维护。 但它已被分叉并重新集成到 Grails 中。
?
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
this is pretty close to what I'm looking for, but still don't know what to download, where to save it, etc...
And look what it says here...
GSP are not maintained as a standalone module. But it has been forked and reintegrated in Grails.
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
好吧,看起来这实际上并不像我预期的那么难,
只需将 groovy-all-1.5.7.jar
从 C:\java\groovy-1.5.7\embeddable
复制到 C:\java\Tomcat 6.0 \lib
并将以下行添加到 C:\java\Tomcat 6.0\conf\web.xml
并且它起作用了!
我什至还没有下载 grails 安装程序...
真的那么容易吗???
这里有一些链接
http://noor.ojuba.org/2008/06/ groovlets-设置/
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
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/
独立的 GSP 已在当前的 Grails 路线图上。 同时查看GSP模块项目页面:https://gsp.dev.java.net/
Standalone GSP is on the current Grails roadmap. In the mean time see the GSP module project page: https://gsp.dev.java.net/
这篇 JavaWorld 文章可能会有所帮助:
使用 Groovlet 减轻负担
This JavaWorld article might lend a hand:
Shed the weight with Groovlets
请检查Rabbtor。 我们通过对 Grails 标签库的定制,提供与 Spring MVC 应用程序的简单 GSP 集成。 支持大多数常见的标记库,但删除了一些依赖于 Grails 的标记库。
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.
我不确定 taglib 功能是否在 Groovlet 中。
I am not sure the taglib functionality is in the Groovlet stuff.