我想知道是否可以从问题nesting-jsf-expression-strings中调整ExtendedBeanELResolver以处理这个嵌套的 EL 表达式:
#{controllerBean.getBean('userProfileBean', component).street}*
从而controllerBean.getBean返回 bean userProfileBean。我将使用ExtenedBeanELResolver以下异常:
SCHWERWIEGEND: javax.el.PropertyNotFoundException: /WEB-INF/templates/modification/userProfile.xhtml @35,196 value="#{controllerBean.getBean('userProfileBean', component).street}": Property 'getBean' not found on type com.something.ControllerBean
如果我插入额外的括号它可以工作,但看起来比现在更难看:
#{(controllerBean.getBean('userProfileBean', component)).street}*
没有额外的括号可以吗?
CycDemo 回答后更新 1:
奇怪的问题。如果我把
<h:inputText value="#{beanOne.getBean('data').title}" />
在页面呈现的表单内,但仅在我提交表单之前。之后将显示相同的错误。
WARNUNG: /WEB-INF/templates/home.xhtml @61,66 value="#{beanOne.getBean('data').title}": Property 'getBean' not found on type com.something.BeanOne
如果我将其更改为
<p:inputText value="#{beanOne.getBean('data').title}" />
该页面甚至不会在开始时呈现。我认为问题在于 JSF 在提交表单时尝试调用 setter 但无法正确评估它。
有任何想法吗?
更新 2
显然 JSF 正在尝试调用getGetBean()因为它正在寻找BeanOne上的属性(我在 Eclipse 中有一个断点),这是错误的:
@ManagedBean
@ViewScoped
public class BeanOne {
private Object bean = new String("something");
public Object getBean(String name) {
FacesContext context = FacesContext.getCurrentInstance();
return context.getApplication().evaluateExpressionGet(context,
"#{" + name + "}",
Object.class);
}
public Object getGetBean() {
return bean; // <-- will be called by JSF
}
public void setGetBean(Object bean) {
this.bean = bean;
}
}