public class OpenSessionInViewListener extends Object implements org.zkoss.zk.ui.util.ExecutionInit, org.zkoss.zk.ui.util.ExecutionCleanup
HibernateUtil, or it will not work.
In WEB-INF/zk.xml, add following lines:
<listener>
<description>Hibernate "OpenSessionInView" Listener</description>
<listener-class>org.zkoss.zkplus.hibernate.OpenSessionInViewListener</listener-class>
</listener>
Applicable to Hibernate version 3.2.ga or later
| Constructor and Description |
|---|
OpenSessionInViewListener()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
cleanup(org.zkoss.zk.ui.Execution exec,
org.zkoss.zk.ui.Execution parent,
List errs)
Deprecated.
|
protected void |
handleOtherException(org.zkoss.zk.ui.Execution exec,
Throwable ex)
Deprecated.
Default other exception (other than StaleObjectStateException) handler.
|
protected void |
handleStaleObjectStateException(org.zkoss.zk.ui.Execution exec,
org.hibernate.StaleObjectStateException ex)
Deprecated.
Default StaleObjectStateException handler.
|
void |
init(org.zkoss.zk.ui.Execution exec,
org.zkoss.zk.ui.Execution parent)
Deprecated.
|
public void init(org.zkoss.zk.ui.Execution exec,
org.zkoss.zk.ui.Execution parent)
init in interface org.zkoss.zk.ui.util.ExecutionInitpublic void cleanup(org.zkoss.zk.ui.Execution exec,
org.zkoss.zk.ui.Execution parent,
List errs)
cleanup in interface org.zkoss.zk.ui.util.ExecutionCleanupprotected void handleStaleObjectStateException(org.zkoss.zk.ui.Execution exec,
org.hibernate.StaleObjectStateException ex)
Default StaleObjectStateException handler. This implementation does not implement optimistic concurrency control! It simply rollback the transaction.
Application developer might want to extends this class and override this method to do other things like compensate for any permanent changes during the conversation, and finally restart business conversation. Or maybe give the user of the application a chance to merge some of his work with fresh data... what can be done here depends on the applications design.
exec - the execution to clean up.ex - the StaleObjectStateException being thrown (and not handled) during the executionprotected void handleOtherException(org.zkoss.zk.ui.Execution exec,
Throwable ex)
Default other exception (other than StaleObjectStateException) handler. This implementation simply rollback the transaction.
Application developer might want to extends this class and override this method to do other things like compensate for any permanent changes during the conversation, and finally restart business conversation... what can be done here depends on the applications design.
exec - the execution to clean up.ex - the Throwable other than StaleObjectStateException being thrown (and not handled) during the executionCopyright © 2015. All rights reserved.