black sensei
black sensei

Reputation: 6678

how to access RESTful parameters from ZK GenericForwardComposer when using Spring MVC

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.

Upvotes: 1

Views: 1770

Answers (1)

kachhalimbu
kachhalimbu

Reputation: 2200

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.

Upvotes: 1

Related Questions