This page (revision-184) was last changed on 21-Apr-2017 08:27 by Dieter Käppel

This page was created on 09-Aug-2012 13:29 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
184 21-Apr-2017 08:27 36 KB Dieter Käppel to previous
183 21-Apr-2017 08:27 36 KB Dieter Käppel to previous | to last
182 15-Jan-2016 10:18 36 KB Dieter Käppel to previous | to last
181 15-Jan-2016 10:16 36 KB Dieter Käppel to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 27 changed 2 lines
!!!Configuration
In the pom.xml use:
!!!Konfiguration
In der pom.xml wird angegeben:
At line 44 changed one line
If you intend to use JAR-Facelets, put the following in your web.xml:
[JSF Ext] includes namespaces e and ext. There are two namespaces, because [JSF Ext] contains both classic tags and on-the-fly facelet tags. In your XHTML-Pages, include the namespaces:
At line 47 changed 4 lines
<context-param>
<param-name>javax.faces.FACELETS_RESOURCE_RESOLVER</param-name>
<param-value>com.intersult.jsf_ext.util.ClassPathResourceResolver</param-value>
</context-param>
xmlns:e="http://java.sun.com/jsf/ext"
xmlns:ext="http://java.sun.com/jsf/composite/ext"
At line 53 changed one line
Access via http://localhost/faces/resource/<test.xhtml>
!!Annotations und InjectionProvider
Wie bereits in [JSF2] erwähnt, werden in einigen Servlet-Containern die Annotations nicht verarbeitet. [JSF Ext] registriert einen sogenannten InjectionProvider, was im Normalfall transparent funktioniert.
At line 55 changed one line
[JSF Ext] includes namespaces e and ext. There are two namespaces, because [JSF Ext] contains both classic tags and on-the-fly facelet tags. In your XHTML-Pages, include the namespaces:
Falls man feststellt, dass die Events im [JSF Ext] nicht arbeiten, Oberflächenelemente nicht aktualisiert werden und Messages nicht angezeigt werden, dann arbeiten vermutlich auch übliche JSF-Annotations @ManagedBean oder @SessionScoped nicht. Abhilfe schafft dann:
At line 58 changed 2 lines
xmlns:e="http://java.sun.com/jsf/ext"
xmlns:ext="http://java.sun.com/jsf/composite/ext"
<context-param>
<param-name>com.sun.faces.injectionProvider</param-name>
<param-value>com.intersult.jsf_ext.event.EventInjectionProvider</param-value>
</context-param>
At line 380 removed 12 lines
!!Annotations und InjectionProvider
Wie bereits in [JSF2] erwähnt, werden in einigen Servlet-Containern die Annotations nicht verarbeitet. [JSF Ext] registriert einen sogenannten InjectionProvider, was im Normalfall transparent funktioniert.
Falls man feststellt, dass die Events im [JSF Ext] nicht arbeiten, Oberflächenelemente nicht aktualisiert werden und Messages nicht angezeigt werden, dann arbeiten vermutlich auch übliche JSF-Annotations @ManagedBean oder @SessionScoped nicht. Abhilfe schafft dann:
{{{
<context-param>
<param-name>com.sun.faces.injectionProvider</param-name>
<param-value>com.intersult.jsf_ext.event.EventInjectionProvider</param-value>
</context-param>
}}}