JSF 隱式導(dǎo)航示例

2018-02-22 15:42 更新

JSF教程 - JSF隱式導(dǎo)航示例


使用JSF,我們可以在配置文件faces-config.xml中定義頁面導(dǎo)航規(guī)則。

我們還可以將導(dǎo)航規(guī)則放在托管bean中。

以下代碼顯示第三個選項,即隱式導(dǎo)航。

JSF 2.0提供了隱式導(dǎo)航,哪些頁面可以自動解析。我們只需要在action屬性中放置視圖名稱,JSF將在部署的應(yīng)用程序中自動搜索正確的視圖頁面。

例如,在以下的JSF表單標(biāo)簽中。我們在action屬性中設(shè)置視圖名稱。

這里當(dāng)點(diǎn)擊Page2按鈕時,JSF將解析視圖名稱,page2解析為page2.xhtml擴(kuò)展名,并在當(dāng)前目錄中找到相應(yīng)的視圖文件page2.xhtml。

<h:form>
   <h:commandButton action="page2" value="Page2" />
</h:form>

例子

下面的代碼來自UserBean.java。

package cn.w3cschool.common;

import java.io.Serializable;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
 
@ManagedBean(name="user")
@SessionScoped
public class UserBean implements Serializable{
  
  private static final long serialVersionUID = 1L;
  public String moveToPage1(){
    return "demo";
  }
  
  public String moveToPage2(){
    return "page2";
  }
  
}

以下代碼來自demo.xhtml。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"   
      xmlns:h="http://java.sun.com/jsf/html">
 
    <h:body>
      <h2>This is page1.xhtml</h2>
 
    <h:form>
        <h:commandButton action="page2" value="Move to page2.xhtml" />
      <h:commandButton action="#{user.moveToPage2}" 
        value="Move to page2.xhtml by managed bean" />
    </h:form>
 
    </h:body>
</html>

以下代碼來自page2.xhtml。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"   
      xmlns:h="http://java.sun.com/jsf/html">
 
    <h:body>
      <h2>This is page2.xhtml</h2>
 
     <h:form>
           <h:commandButton action="demo" value="Move to demo.xhtml" />
        <h:commandButton action="#{user.moveToPage1}" 
          value="Move to demo.xhtml by managed bean" />
     </h:form>
 
    </h:body>
</html>
下載 Implicit-Navigation.zip

運(yùn)行

將生成的WAR文件從目標(biāo)文件夾復(fù)制到Tomcat部署文件夾,并運(yùn)行Tomcat-Install-folder/bin/startup.bat。

Tomcat完成啟動后,在瀏覽器地址欄中鍵入以下URL。

http://localhost:8080/simple-webapp/demo.xhtml
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號