Tag: wildfly
-
Secure JSF Application – why you should always define a servlet mapping
If you deploy a JSF application in WildFly 8, you can omit to define the JSF serlvet mapping. In this case three default mappings will be active out of the box. <context-root>/faces/* <context-root>/*.jsf <context-root>/*.faces Tested on WildFly 8.0.0.CR1 and JBoss EAP 6.2.0.GA This behavior is not mentioned in the JSF 2.1 spec. But it explicitly…
-
How to access JSF from an EJB with JBoss Enterprise Application Platform 6 (aka JBoss AS7 / Wildfly)
by
The good old JBoss Seam framework introduced the usage of stateful session beans (SFSB) as backing beans for JSF applications. The trick was to bind the lifecycle of a SFSB to a web context, such as the session or the request context. Meanwhile this concept was integrated into the Java EE by the Context and…

You must be logged in to post a comment.