将 Groovy 集成到现有的 Web 应用程序中
我有一个现有的 Web 应用程序,我想将 Groovy 添加到这个 Web 应用程序中,以便我可以轻松地开发 Web 服务提供商(如果可能)。 有没有一种方法可以轻松编写服务类(如 Grails 服务类)并将此类公开为 ws ?
Grails 使用相同的东西:向服务类添加一行后,该类将自动公开为 Web 服务。
问候
I have an existent web application, I'd like to add Groovy to this web app so that I can develop web service providers easily if possible.
Is there a way to write a service class (like Grails service classes) and expose this class as ws without much pain ?
Grails uses the same thing : after adding one line to the service class, that class will be exposed automatically as a web service.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GroovyWS 是 Apache CXF 的基于 SOAP 的实现。
经过一些快速搜索后,我发现了两个可能有帮助的教程。
一个使用 Jersey,另一个使用 Restlet。泽西岛似乎更简单。
使用 Jersey 和 Groovy 创建 RESTful 服务
使用 Groovy 和 Restlet 构建 RESTful Web 应用程序,第 1 部分:启动和运行
GroovyWS is a SOAP based implementation of Apache CXF.
After some quick searching I found two tutorials that may be of help.
One using Jersey and the other using Restlet. The Jersey one seems simpler.
Creating RESTful services with Jersey and Groovy
Building RESTful Web Apps with Groovy and Restlet, Part 1: Up and Running