実際にJSFを使用してWebアプリケーションを実行しようとしていますが、Webブラウザーでのレンダリングに問題があります。
コンテキストは次のとおりです。
JSFタグを正しく表示するindex.xhtmlページがあり、単純なハイパーリンクを介して別のページに移動したいと思います。
<h:outputLink value="/Advisor/AddClient.xhtml">
<h:outputText value="Add a client" /> </h:outputLink>
ただし、AddClientページには、JSFタグの結果が表示されません。
これがaddclientファイルです:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<h:body>
<ui:composition template="template.xhtml">
<script type="text/javascript">
<!-- a validation script used in py page -->
</script>
<h:panelGroup layout="block" rendered="#{loginBean.isLogged}">
<h:form id="formu" onsubmit="return validation()">
<table>
<tr>
<td>
First name :
</td>
<td>
<h:inputText id="txtFName" value="#{clientCreationBean.fname}"/>
</td>
</tr>
<tr>
<td>
Last name :
</td>
<td>
<h:inputText id="txtLName" value="#{clientCreationBean.lname}"/>
</td>
</tr>
<tr>
<td>
E-Mail :
</td>
<td>
<h:inputText id="txtEmail" value="#{clientCreationBean.email}"/>
</td>
</tr>
<tr>
<td>
Address :
</td>
<td>
<h:inputText id="txtAddress" value="#{clientCreationBean.address}"/>
</td>
</tr>
<tr>
<td>
Zip code :
</td>
<td>
<h:inputText id="txtZip" value="#{clientCreationBean.zip}"/>
</td>
</tr>
<tr>
<td>
City :
</td>
<td>
<h:inputText id="txtCity" value="#{clientCreationBean.city}"/>
</td>
</tr>
<tr>
<td>
Phone :
</td>
<td>
<h:inputText id="txtPhone" value="#{clientCreationBean.phone}"/>
</td>
</tr>
</table>
<h:commandButton action="#{clientCreationBean.CreateClient()}" value="Ajouter"/>
</h:form>
</h:panelGroup>
</ui:composition>
</h:body>
</html>
これが私のweb.xmlです:
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
JSFが他のページで解釈されない理由について何か考えはありますか?
アップデート :
AddClientを次のように動作させました:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
AddClient.xhtmlをIndex.xhtmlと同じフォルダーに移動し(「Advisor」フォルダーにはもうありません)、リンクを次のように変更します。
<h:outputLink value="AddClient.xhtml">
<h:outputText value="Ajouter un client" />
</h:outputLink>
しかし、/ Advisor / AddClient.xhtmlにリンクを配置したAdvisorフォルダーのページを許可すると、機能しません。なぜ?
ありがとう、
凧