我需要使用客户端发送的参数来更改网站的上下文。
例如,如果我致电http://localhost:8084/JSF/
,我会在index.xhtml
模板上的“首页”页面加载常用的content
(默认情况下)。
但是,如果我拨打http://localhost:8084/JSF/index.xhtml?page=profile
,我需要在index.xhtml
中进行一种切换,并在我的content
区域中包含/插入配置文件模板(或定义配置文件的页面)。
我认为我需要管理一个servlet才能做到这一点,因为我认为我不能在index.xhtml中创建一种swith。所以我认为我需要加载一些模板而不是另一个模板。
我需要使用哪个servlet?或者我需要创建自己的Servlet才能执行此操作?
干杯
更新(在BalusC的建议之后添加)
package Beans;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.ManagedBean;
@ManagedBean(name="selector")
@ManagedProperty(value="#{param.page}")
public class Selector {
private String page;
public String getPage() {
return page;
}
public void setPage(String page) {
this.page = page;
}
}
template.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:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title><ui:insert name="title">Facelets Template</ui:insert></title>
</h:head>
<h:body>
<ui:insert name="login_homepage">Box Content Here</ui:insert>
<ui:insert name="content_homepage">Box Content Here</ui:insert>
</h:body>
</html>
index.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">
<ui:composition template="./template.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<ui:define name="title">
// title
</ui:define>
<ui:define name="login_homepage">
// login
</ui:define>
<ui:include src="#{selector.page}.xhtml" />
<ui:define name="content_homepage">
// content
</ui:define>
</ui:composition>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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_2_5.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>
profile.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">
<ui:composition
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h2>PROFILE</h2>
</ui:composition>
答案 0 :(得分:9)
请求参数可由@ManagedProperty
在JSF bean中设置。
@ManagedProperty(value="#{param.page}")
private String page;
(这基本上是在bean构造之后的bean.setPage(request.getParameter("page"))
)
您可以在Facelets <ui:include>
中使用EL。
<ui:include src="#{bean.page}.xhtml" />
(如果bean.getPage()
返回profile
,则该值最终会显示为profile.xhtml
并相应地包括在内)
不需要遗留servlet:)
更新:您已将注释设置在错误的位置。它看起来应该像我原来的答案一样:
package beans;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
@ManagedBean
@RequestScoped
public class Selector {
@ManagedProperty(value="#{param.page}")
private String page;
public String getPage() {
return page;
}
public void setPage(String page) {
this.page = page;
}
}
请注意,我省略了@ManagedBean
名称,因为默认值已经是第一个字符小写的类名(与您手动指定的完全相同)。我还添加了@RequestScoped
注释来指定bean范围。我还降低了包名,因为根据标准Java Naming Conventions,包名中不允许使用大写。
<managed-bean>
中的整个faces-config.xml
是entirely superfluous,带有新的JSF 2.0注释。你基本上复制了它。删除它。
更新2 :index.xhtml
应如下所示
<!DOCTYPE html>
<html lang="en"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<h:head>
<title>Include demo</title>
</h:head>
<h:body>
<h1>This is the index page</h1>
<c:catch>
<ui:include src="#{selector.page}.xhtml" />
</c:catch>
</h:body>
</html>
(只要没有此类文件,<c:catch>
即可取消FileNotFoundException
include.xhtml
应如下所示:
<!DOCTYPE html>
<ui:composition
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h2>Include page content</h2>
</ui:composition>
假设FacesServlet
正在url-pattern
*.xhtml
监听并且这两个文件位于同一文件夹中,请按index.xhtml?page=include
打开。
答案 1 :(得分:0)
在更新的问题中,以下行无序:
@ManagedBean(name="selector")
@ManagedProperty(value="#{param.page}")
public class Selector {
private String page;
应该是这样的:
@ManagedBean(name="selector")
public class Selector {
@ManagedProperty(value="#{param.page}")
private String page;
答案 2 :(得分:0)
问题是如果你在动态包含的文件中有一个commandButton, commandButton不起作用。永远不会调用动作例程。我还在努力 找到解决方案,即使使用Mojarra 2.1。