Amazon Ads

2008年4月29日 星期二

【筆記】在做JSF的navigation時要主意的設定

在下列程式碼中,

這裡的action中的someResult必須符合navigation rule中的一個outcome。

 /index.jsp
 
  someResult
  /welcome.jsp
 

注意這裡的view ID前面一定要有/ ,然後副檔名一定是.jsp(這讓拜歐吃過虧)。

2008年4月28日 星期一

要在JSF中取得session....

把object放到session中:
Map sessionMap = FacesContext.getCurrentInstance().getExternalContext().getSessionMap();

sessionMap.put("aaaa");
從session中把object拿出來:
Map sessionMap = FacesContext.getCurrentInstance().getExternalContext().getSessionMap();

_logger.debug("textss" + sessionMap.get("aaaa"));