我有一個JSF項目,我已經有一個工作正常的index.xhtml
頁面。當我嘗試添加另一個XHTML頁面時,由於某種原因,它沒有連接到我的會話範圍的託管bean。我在我的新頁面添加代碼,但它不像我的index.xhtml
。我甚至複製並粘貼來自索引的代碼,但它仍然不起作用。有什麼想法嗎?JSF新網站創建
下面是一些我在我的新的一頁代碼:
Amount: <h:inputText value="#{transactionBean.amount}" style="color: Yellow; background: Teal;"/>
Price <h:inputText value="#{transactionBean.pricePaid}" style="color: Yellow; background: Teal;"/
這裏是我的web.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</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>
</web-app>
請具體說明。什麼「不起作用」?瀏覽器或server.log中的任何錯誤?沒有呈現HTML? – 2012-03-02 20:22:03
不會有任何錯誤,它不顯示任何東西,它不顯示任何東西。只有數量和價格顯示在頁面上。沒有輸入文本或其他任何東西 – apoellitsi 2012-03-02 20:25:49
原因可能是第二頁未被faces servlet處理。瀏覽器源代碼中有什麼? – 2012-03-02 20:30:12