How can i instanciate an Application Object?
@ApplicationState
private MyObject objectName_;
how i use a request
@Inject
private RequestGlobals requestGlobals_;
Then you have access to the Servlet API with things like:
HttpServletRequest request = requestGlobals.getHTTPServletRequest();
Gi
On 10/23/07, Gianluigi <[EMAIL PROTECTED]> wrote:
> Only a question, how i use a request or a Session in Tapestry 5? How can i
> instanciate an
> Application Object?
>
> in JSP i wrote : HttpSession session and session.setProperty("Key");
> and in Tapestry 5?
Take a look at application state:
h