.2 to create a simple project.
> My question is how do I achieve the URL mapping(customize URL) same as
> Spring MVG like
>
> class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
>
>
>
>
>myPageController
>
>
>
> Thanks
> David
>
Dear Tapestry users,
I am trying to use Tapestry 5.2 to create a simple project.
My question is how do I achieve the URL mapping(customize URL) same as
Spring MVG like
myPageController
Thanks
David
Thank you for your explanations,
I am not sure to understand correctly, when you speak about the path of
least resistance about page activation/passivation, you speak of it as an
alternate simpler solution than the dispatcher based solution?
If yes, I don't see how simpler it is. The way I under
Part of the solution here is a custom Dispatcher, contributed to the
MasterDispatcher service configuration.
A Dispatcher is provided with the Request and Response, and can decide
how and if to response, much like a servlet.
The different Dispatchers form a chain-of-command. You can "schedule"
I found a way to do it by implementing a PageRenderRequestFilter. However
this is a bit tricky, since it requires a "User" page defined for it to work
(even if it is not used by the app), because this filter is only called if
_componentClassResolver.isPageName(pageName) is successful (cf
PageRende
Hi All,
I am new to Tapestry and would like to have a particular mapping for some
pages. For example, I would like that a call to
/user/MyUserName/viewSomething/withThisParameter maps to a page called
ViewSomething, where a user field would be initialized with MyUserName.
Now I can easily achieve