glassfish « Component « JSF Q&A





1. Glassfish not display JSF components    stackoverflow.com

On my index.xhtml I have Java Server Face components which are displayed correctly and use a managed bean. But if I link to any other page or even a page with ...

2. JSF 2.0 Custom Components Problem    java.net

Hello everyone I have a problem when i create a custom component in JSF 2.0 I've created a simple component "myPanel". I put it in WebContent/resources/components folder. Here's the code of the component :

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
xmlns:h="http://java.sun.com/jsf/html"
xmlns:c="http://java.sun.com/jsf/composite"
xmlns:p="http://primefaces.prime.com.tr/ui"
xmlns:f="http://java.sun.com/jsf/core">


5. Help with RequestDispatcher.include() in jsf component    java.net

I am trying to create a custom component that mimics jsp:include that will allow me to dynamically include snippets of jsf into a jsf page. The main idea is to use this to include dataTable jsf snippets that can be reconfigured at runtime. I also have some grander plans; but, for now, getting the includes to work would be great.