1.在<f:subvIEw>裡的<h:commandLink>的action不執行
很多時候<f:subvIEw>是在包含頁面的情況下被用到(例如包含一個導航頁面),而被包含的頁面裡如果有非JSF標簽(如<a>)的時候,必須額外使用<f:verbatim>包含它才不會報錯。問題是<f:verbatim>包含的內容是不算在JSF標簽的Component Tree裡的,因此這裡的<h:commandLink>的action就不會被執行了。解決的辦法是不要在<f:verbatim>裡用<h:commandLink>,即盡量全部使用JSF標簽比較不容易出問題。
2.還是在<f:subvIEw>裡,action屬性的方法雖然執行了,但不能轉到faces-config裡定義的目標頁面
檢查faces-config.XML裡<from-view-id>,如果頁面被包含的話,則<from-vIEw-id>可能應為"/*",而不是如"/navigatorbar.JSPx"這樣。
3.結合EMF使用時,頁面拋出找不到屬性異常“Error getting property 'xxx' from bean of type XXXX”
EMF生成的XXXImpl裡的構造方法是protected修飾的,改為public即可。(注意修改@generated修飾,否則下次重新生成時會被覆蓋回來)
另(不僅限於EMF的情況):如果一個Bean裡有兩個同名但參數不同的方法,例如Customer有getRecords()和 getRecords(int year)這兩個方法,則在JSF頁面裡用#{customer.value}會拋出同樣的異常,我暫時還不確定是EL的問題還是JSF實現(我用的 trinidad)的問題,部分異常stack如下所示:
- 嚴重: Servlet.service() for servlet faces threw exception
- Javax.faces.el.PropertyNotFoundException: Error getting
property 'xxx' from bean of type XXXX- at com.sun.faces.el.PropertyResolverImpl.getValue
(PropertyResolverImpl.Java:107)- at com.sun.faces.el.impl.ArraySuffix.evaluate
(ArraySuffix.Java:167)- at com.sun.faces.el.impl.ComplexValue.evaluate
(ComplexValue.Java:151)- at com.sun.faces.el.impl.ExpressionEvaluatorImpl.
evaluate(ExpressionEvaluatorImpl.Java:243)- at com.sun.faces.el.ValueBindingImpl.getValue
(ValueBindingImpl.Java:173)- at com.sun.faces.el.ValueBindingImpl.getValue
(ValueBindingImpl.Java:154)- at org.apache.myfaces.trinidad.bean.FacesBeanImpl.
getProperty(FacesBeanImpl.Java:66)- at org.apache.myfaces.trinidad.component.UIXComponentBase.
getProperty(UIXComponentBase.Java:1100)- at org.apache.myfaces.trinidad.component.UIXIterator.
getValue(UIXIterator.Java:415)- at org.apache.myfaces.trinidad.component.UIXCollection
._flushCachedModel(UIXCollection.Java:1127)- at org.apache.myfaces.trinidad.component.UIXCollection.
encodeBegin(UIXCollection.Java:511)- at org.apache.myfaces.trinidadinternal.uinode.UIComponent
UINode._renderComponent(UIComponentUINode.Java:317)- at org.apache.myfaces.trinidadinternal.uinode.UIComponent
UINode.render(UIComponentUINode.Java:279)
解決的辦法是把帶參數的那個方法改名。
4、從session裡刪除一個bean
- ValueBinding binding = FacesContext.getCurrentInstance()
.getApplication().createValueBinding("#{MyBean}");- binding.setValue(context, null);
\