Life cycle has been edited by Michael Laccetti (Jun 03, 2008).

Change summary:

Updated the Custom Session portion to show how things work in Wicket 1.3.x

(View changes)

Content:

Life cycle

TODO Describe the life cycle of Wicket apps, sessions and requests.
See Request processing overview. It's not exactly description of life cycles but is related to that.

Custom Sessions

The wicket way of storing objects in your session is by extending the wicket session. For example if you want to store some kind of user object in your session, you would create a getter and setter for it in
your custom wicket session:

Add the property to your custom Session object.

public class MySession extends WebSession {
   public MySession(Request request) {
      super(request);
   }
   private String myAttribute;
   // ... getters and setters
}

and override either of the following methods on your Application class:

@Override
public Session newSession(Request request, Response response) {
   return new MySession(request);
}

Custom RequestCycles

Describe how to use custom request cycles.

Reply via email to