使用 Spring MVC 时如何从 ZK GenericForwardComposer 访问 RESTful 参数
我正在使用 zk 和 spring 开发一个项目。基本上 Spring 管理对象的对象生命周期。我计划使用可爱的 url。为此我使用了 ZK MVC 模式并通过映射请求添加了 Spring 3 MVC 前端控制器使用 mvc:view-controller
到视图
<mvc:view-controller path="/" view-name="home"/>
有一种情况我需要从可爱的 url 访问参数(RESTful) 但我找不到如何使用它。我还认为我担心混合 2 个 MVC 模式会使整个项目变得复杂。我发布了 此处 ZK forun 但到目前为止我没有得到答案。我最终使用 session
进行参数传递。
有什么办法可以做到这一点吗?你会怎么做?
感谢您的阅读。
i'm working on a project using zk and spring.Basically Spring manages object life-cycle of the objects.i've planned to use cute url.for that i used ZK MVC pattern and added Spring 3 MVC front controller by mapping the requests to the views using mvc:view-controller
<mvc:view-controller path="/" view-name="home"/>
There has been a situation where i would need to access parameters from the cute url (RESTful)
but i couldn't find how to use that.I think also that my fear is to complicate the whole project my mixing the 2 MVC patterns.I posted here on ZK forun but i got no answer so far.I ended up using session
for parameter passing.
Is there any way to do that? how would you do that?
thanks for reading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看过 ZEST 了吗?我的理解是,您可以使用 ZEST 来美化 ZUML/JSP 页面的 url,并让 ZK MVC 处理 Ajax 事件。
Have you looked at ZEST yet? My understanding is you can use ZEST for beautifying your urls to ZUML/JSP pages and let ZK MVC take care of the Ajax events.