Mixing jsp and jsf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:39:47Z http://stackoverflow.com/feeds/question/42828 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/42828/mixing-jsp-and-jsf 3 Mixing jsp and jsf Slartibartfast 2008-09-03T23:27:56Z 2009-01-15T09:04:45Z <p>I will elaborate somewhat. Jsf is kind-of extremely painful for working with from designer's perspective, somewhat in the range of trying to draw a picture while having hands tied at your back, but it is good for chewing up forms and listing lots of data. So sites we are making in my company are jsf admin pages and jsp user pages. Problem occurs when user pages have some complicated forms and stuff and jsf starts kickin' in. </p> <p>Here is the question: I'm on pure jsp page. I need to access some jsf page that uses session bean. How can I initialize that bean? If I was on jsf page, I could have some commandLink which would prepare data. Only thing I can come up with is having dummy jsf page that will do the work and redirect me to needed jsf page, but that's kind of ugly, and I don't want to end up with 50 dummy pages. I would rather find some mechanism to reinitialize bean that is already in session with some wanted parameters.</p> <p>Edit: some more details. In this specific situation, I have a tests that are either full or filtered. It's a same test with same logic and everything, except if test is filtered, it should eliminate some questions depending on answers. Upon a clicking a link, it should start a requested test in one of the two modes. Links are parts of main menu-tree and are visible on many sibling jsp pages. My task is to have 4 links: testA full, testA filtered, testB full, testB filtered, that all lead on same jsf page and TestFormBean should be reinitialized accordingly.</p> <p>Edit: I've researched facelets a bit, and while it won't help me now, I'll definitely keep that in mind for next project.</p> http://stackoverflow.com/questions/42828/mixing-jsp-and-jsf/43549#43549 2 Answer by Tim Howland for Mixing jsp and jsf Tim Howland 2008-09-04T11:46:29Z 2008-09-04T11:46:29Z <p>have you looked into using facelets? It lets you get rid of the whole JSF / JSP differences (it's an alternate and superior view controller).</p> <p>It also supports great design-time semantics with the jsfc tag...</p> <pre><code>&lt;input type="text" jsfc="#{SomeBean.property}" class="foo" /&gt; </code></pre> <p>gets translated internally to the correct JSF stuff, so you can work with your existing tools.</p> http://stackoverflow.com/questions/42828/mixing-jsp-and-jsf/63883#63883 1 Answer by Eric DeLabar for Mixing jsp and jsf Eric DeLabar 2008-09-15T15:21:33Z 2008-09-16T13:45:32Z <p>To solve this one I'd probably create a JSF fragment that only includes your form, then use a tag to include it in my JSF page. </p> <p>That solution is probably a little fragile depending on your environment though.</p> <p>EDIT: See Chris Hall's answer, FacesContext is not available outside the FacesServlet.</p> http://stackoverflow.com/questions/42828/mixing-jsp-and-jsf/69050#69050 0 Answer by MetroidFan2002 for Mixing jsp and jsf MetroidFan2002 2008-09-16T03:00:31Z 2008-09-16T03:00:31Z <p>Create a custom JSP tag handler. You can then retrieve the bean from session scope, and then initialize it on the fly. See this <a href="http://java.sun.com/products/jsp/tutorial/TagLibrariesTOC.html" rel="nofollow">tutorial</a> for more details.</p> http://stackoverflow.com/questions/42828/mixing-jsp-and-jsf/71584#71584 0 Answer by Slartibartfast for Mixing jsp and jsf Slartibartfast 2008-09-16T12:08:02Z 2008-09-16T12:08:02Z <p>Actually, I've resolved this by removing bean from session, so it has to be generated again when jsf page is called. Then I pick up get parameters from a request in constructor.</p> http://stackoverflow.com/questions/42828/mixing-jsp-and-jsf/72213#72213 2 Answer by Chris Hall for Mixing jsp and jsf Chris Hall 2008-09-16T13:33:47Z 2008-09-16T13:41:20Z <p>You can retrieve a managed bean inside of a tag library using something like this:</p> <pre><code>FacesContext context = FacesContext.getCurrentInstance(); Object myBean = context.getELContext().getELResolver().getValue(context.getELContext(), null, "myBeanName"); </code></pre> <p>However, you'd need to use the tag library from one of your JSF pages. FacesContext.getCurrentInstance() returns null when it's called outside of the FacesServlet.</p> http://stackoverflow.com/questions/42828/mixing-jsp-and-jsf/446101#446101 0 Answer by mero103 for Mixing jsp and jsf mero103 2009-01-15T09:04:45Z 2009-01-15T09:04:45Z <p>Peace be upon you all ;</p> <p>I am new working with JSF and I already having a web project that is all in jsp / servlets only but I needed to use the JSF in one issue and now i can't refrence to this jsf by normal so if anyone know a methode to solve this I 'd really appreciate it. Thanks in advance </p>