UI « JSF « Spring Q&A





1. JSF data transfer between UI and business layer    stackoverflow.com

We are using JSF in UI, Spring in business layer, Hibernate in persistence layer. Now my question is how to pass data from the JSF UI to spring business layer. Can ...

2. JSF2 and Spring Webflow ( doesn't respond inside facelet tag)    stackoverflow.com

i am trying to have a List of commandLink in every cell of dataTable. this is small example explaining what i am trying to do

<h:form id="form1">
<p:dataTable id="doctorTable" var="doctor"
value="#{search.medecinsResult}" rowIndexVar="rowIndex">
<p:column headerText="#{search.headerDate[1]}">
<ui:repeat var="seance" value="#{search.column2[rowIndex]}">
 ...

3. Dynamic doesn't work    stackoverflow.com

I want to use a dynamic ui:include, like this.

<ui:repeat value="#{FormsService.getTemplates(component.form)}"
                var="template">
    <ui:include src="forms/#{template.id}.xhtml"/>
</ui:repeat>
Somehow ...

4. How to call a Spring MVC controller by ui:include?    stackoverflow.com

I am working on a legacy project that was built with JSP. The JSP page included an HTML page via <jsp:include>. But the included page was essentially a mapping to a ...