An open API service indexing awesome lists of open source software.

https://github.com/gedmarc/guiced-servlets-jsf

JSF Integration for Guiced Injection Framework. Allows for Faces to execute through the Guice Filter
https://github.com/gedmarc/guiced-servlets-jsf

Last synced: 8 months ago
JSON representation

JSF Integration for Guiced Injection Framework. Allows for Faces to execute through the Guice Filter

Awesome Lists containing this project

README

          

# Guiced-Servlets-JSF

JSF Integration for Guiced Injection Framework. Allows for Faces to execute through the Guice Filter

To configure correctly, add the following to faces-config

```

com.jwebmp.guicedservlets.jsf.FacesApplicationFactoryWrapper

```

Remember to remove your context path from web.xml or it will be skipped

REMOVE
```

Faces Servlet
javax.faces.webapp.FacesServlet


Faces Servlet
*.jsf


Faces Servlet
*.xhtml

```

This mapping is performed through the servlet binder

You can change/add URL mappings by configuring GuicedServletJSFBindings or by mapping your own

```
module.serve$("/faces/", "/faces/*", "*.jsf", "*.faces", "*.xhtml")
.with(FacesHttpServlet.class);
```

This implementation is a merge of http://javaevangelist.blogspot.com/2013/08/jsf-2x-tip-of-day-guice-elresolver.html and https://github.com/skuzzle/guice-jsf and uses the automated configurations of guiced-servlets and guiced-injection