You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ta...@apache.org on 2020/02/20 12:47:47 UTC

[myfaces] branch master updated: Update README.md

This is an automated email from the ASF dual-hosted git repository.

tandraschko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a079ce  Update README.md
7a079ce is described below

commit 7a079ced4c432ec547bc24b082c25d914181a3ff
Author: Thomas Andraschko <ta...@apache.org>
AuthorDate: Thu Feb 20 13:47:38 2020 +0100

    Update README.md
---
 README.md | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index cd33c90..d10e55b 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Apache's implementation of the JavaServer Faces specification
 
 Servlet 4.0 will enable JSF 2.3 to serve resources via HTTP/2 push.   
 
-2.3-next equals the JSF 2.3 API but delegated @ManagedBeans to CDI. The implementation of the old FacesEL (javax.faces.el.*) has been completely removed.
+2.3-next equals the JSF 2.3 API but delegates @ManagedBeans to CDI. The implementation of the old FacesEL (javax.faces.el.*) has been completely removed.
 
 ## Installation
 
@@ -66,3 +66,12 @@ mvn clean install
       </h:body>
     </html>
     ```
+
+## Quarkus extension
+
+Since 2.3-next a Quarkus extension is available. A sample project can be found here: https://github.com/apache/myfaces/blob/master/extensions/quarkus/showcase/
+Native mode is currently not supported as EL makes extensive use of reflection.
+
+### Differences to a normal servlet container
+- You need to put your views under src/main/resources/META-INF/resources as Quarkus doesn't create a WAR and src/main/webapp is ignored!
+- Session replication / passivation / clustering is not supported yet by Quarkus