|
Page Edited :
WICKET :
Life cycle
Life cycle has been edited by syl (Feb 08, 2008). Content:Life cycleTODO Describe the life cycle of Wicket apps, sessions and requests. Custom SessionsThe 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 Add the property to your custom Session object. public class MySession extends WebSession { public MySession(WebApplication application) { super(application); } private String myAttribute; // ... getters and setters } and override either of the following methods on your Application class: protected ISessionFactory getSessionFactory() { return this.sessionFactory; } public Session newSession() { return new MySession(WebApplication.this); }
|
Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request
Unsubscribe or edit your notifications preferences
Unsubscribe or edit your notifications preferences
