This page (revision-7) was last changed on 16-Dec-2013 18:52 by Dieter Käppel

This page was created on 18-Aug-2013 15:27 by Dieter Käppel

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
7 16-Dec-2013 18:52 20 KB Dieter Käppel to previous
6 16-Dec-2013 18:52 20 KB Dieter Käppel to previous | to last
5 03-Sep-2013 08:27 19 KB Dieter Käppel to previous | to last
4 03-Sep-2013 07:26 18 KB Dieter Käppel to previous | to last
3 21-Aug-2013 13:19 17 KB Dieter Käppel to previous | to last
2 21-Aug-2013 07:26 17 KB Dieter Käppel to previous | to last
1 18-Aug-2013 15:27 17 KB Dieter Käppel to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 3 added 3 lines
!!!Inhalt
[{TableOfContents title='Page contents' numbered='true'}]
At line 377 added 14 lines
!!!Lifecycle
Scopes sind Lifecycles unterworfen, da enthaltene Objekte wieder freigegeben werden müssen. Je nachdem target Lifecycle (Request, View, Page, Session oder Application), wird ein Scope nach unterschiedlich langer Lebenszeit wieder entfernt. Verantwortlich dafür sind sogenannte Destruction-Callbacks. Diese werden vom Scope-Manager aufgerufen, bevor ein Scope entfernt wird. Der Scope enthält dadurch die Möglichkeit, Ressourcen frei zu geben.
Das [Spring Framework] unterstütz in der Grundversion keinen Destruction-Callback für Requests. Um Ressourcenverlust zu vermeiden, sollte statt dem org.springframework.web.context.request.RequestContextListener der com.intersult.jsf.extensions.ExtRequestContextListener verwendet werden.
Dies erfolgt durch einen Eintrag in der web.xml:
{{{
<listener>
<listener-class>com.intersult.jsf.extensions.ExtRequestContextListener</listener-class>
</listener>
}}}