当bean名称已知但尚未构造时,如何调用/访问托管bean的属性?
例如:
<p:selectOneMenu value="#{eval.evaluateAsBean(bean).text}" >
<f:selectItems value="#{eval.evaluateAsBean(bean).values}" var="val"
itemLabel="#{val}" itemValue="#{val}" />
</p:selectOneMenu>
如果有一个名为testBean的托管bean,并且在我的视图中 bean 具有"testBean"
值,我想要文本或值要调用的testBean的属性。
EDIT1
上下文
对象由属性列表(值)组成。使用自定义JSF编辑器修改一个属性,具体取决于其类型。
编辑器列表由对象的类型确定,并使用custom:include
标签显示在表单中。此自定义标记用于动态包含编辑器<custom:include src="#{editor.component}">
。 组件属性指向JSF编辑器的位置。
在我的示例中,一些编辑器(呈现为选择框)将使用相同的facelet(dynamicDropdown.xhtml)。每个编辑器都有一个会话范围的托管bean。我想重用多个bean的相同facelet,并使用 bean param将bean的名称传递给dynamicDropdown.xhtml。
genericAccount.xhtml
<p:dataTable value="#{group.editors}" var="editor">
<p:column headerText="Key">
<h:outputText value="#{editor.name}" />
</p:column>
<p:column headerText="Value">
<h:panelGroup rendered="#{not editor.href}">
<h:outputText value="#{editor.component}" escape="false" />
</h:panelGroup>
<h:panelGroup rendered="#{editor.href}">
<custom:include src="#{editor.component}">
<ui:param name="bean" value="#{editor.bean}"/>
<custom:include>
</h:panelGroup>
</p:column>
</p:dataTable>
#{editor.component}
指的是dynamicDropdown.xhtml文件。
dynamicDropdown.xhtml
<ui:composition 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"
xmlns:p="http://primefaces.prime.com.tr/ui">
<p:selectOneMenu value="#{eval.evaluateAsBean(bean).text}" >
<f:selectItems value="#{eval.evaluateAsBean(bean).values}" var="val"
itemLabel="#{val}" itemValue="#{val}" />
</p:selectOneMenu>
</ui:composition>
eval
是托管bean:
@ManagedBean(name = "eval")
@ApplicationScoped
public class ELEvaluator {
...
public Object evaluateAsBean(String el) {
FacesContext context = FacesContext.getCurrentInstance();
Object bean = context.getELContext()
.getELResolver().getValue(context.getELContext(), null, el);
return bean;
}
...
}
答案 0 :(得分:1)
如果您通过JSF传递了bean,例如通过将bean =“#{testBean}”传递给您的视图,您将使用value =“#{cc.attrs.bean.test}”访问该属性
答案 1 :(得分:1)
据我所知,您的问题<h:outputText value="#{bean.text}"/>
会在您的屏幕上打印该属性的文本,您的托管bean应该使用@ManagedBean进行注释。
答案 2 :(得分:1)
我正在使用servlet-api 2.5
Servlet 2.5意味着EL 2.1。 EL 2.1不支持调用带参数的方法。它在EL 2.2中引入,它暗示了Servlet 3.0。
如果无法升级到Servlet 3.0兼容容器(Tomcat 7,Glassfish 3,JBoss AS 6等),则需要升级EL 2.1实现。 JBoss EL是一种兼容EL 2.1的实现,它支持与EL 2.2相同的新功能。要安装它,只需将jboss-el.jar放入webapp的/WEB-INF/lib
,然后将以下上下文参数添加到web.xml
,假设您使用的是Mojarra:
<context-param>
<param-name>com.sun.faces.expressionFactory</param-name>
<param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
</context-param>