2013-05-14 73 views
0

在jsf中使用webflow打開新窗口中的頁面時,我需要使用鏈接,並且當我單擊鏈接時應該會顯示一個新窗口,但鏈接的網址不是靜態我必須從數據庫中提取它並準備好,然後將其用於我的鏈接。如何在jsf中使用webflow在jsf中使用評估

我該怎麼做,謝謝你的關注。

回答

0
<h:commandLink target="_blank" value="Click here" actionListener="#{myBean.action}"> 
     <f:attribute name="attributeName1" value="attributeValue1" /> 
     <f:attribute name="attributeName2" value="attributeValue2" /> 
    </h:commandLink> 

在myBean.java中,在getter中,您可以準備語句並從數據庫讀取數據。

參考此鏈接:http://balusc.blogspot.de/2006/06/communication-in-jsf.html

+0

我不明白怎麼H:commandLink得到準備的網址?是myBean.action應該返回字符串? – EmreAltun