在支持组件中使用@ManagedProperty
Use of @ManagedProperty in backing component
如何在支持组件中使用 @ManagedProperty
?
这是合作伙伴选择器复合组件。该组件检查数据库中键入的合作伙伴代码,如果代码有效,则填写合作伙伴名称。
组件:
<cc:interface componentType="partnerSelComp">
<cc:attribute name="value" type="java.lang.Long"/>
</cc:interface>
<cc:implementation>
<span id="#{cc.clientId}" style="white-space:nowrap">
<p:inputText id="id" type="hidden" binding="#{cc.partnerId}"/>
<p:inputText id="code" binding="#{cc.code}">
<p:ajax event="blur" update="id code name" listener="#{cc.validate}" />
</p:inputText>
<p:inputText id ="name" disabled="true" binding="#{cc.name}" />
<p:message for="code"/>
</span>
</cc:implementation>
在 encodeBegin()
我得到了 NPE 因为 service
是空的:
@FacesComponent("partnerSelComp")
public class PartnerSelComp extends UIInput implements NamingContainer {
private InputText partnerId;
private InputText code;
private InputText name;
@ManagedProperty("#{partnerService}")
private PartnerService service;
@Override
public void encodeBegin(FacesContext context) throws IOException {
Partner p=null;
Long i = (Long) getValue();
if (i != null) {
p = findPartnerById(service.getList(), i);
}
fill( (i==null) , p); // fills the code and name fields
}
...
}
这是我要访问的 bean。 (稍后它将替换为 JPA 查询。)
@ManagedBean(name = "partnerService")
@ApplicationScoped
public class PartnerService {
private List<Partner> list;
public PartnerService() {
list = new ArrayList<>();
list.add( new Partner(1, "A", "Partner A"));
list.add( new Partner(2, "B", "Partner B"));
list.add( new Partner(3, "C", "Partner C"));
list.add( new Partner(4, "D", "Partner D"));
list.add( new Partner(5, "E", "Partner E"));
list.add( new Partner(6, "E", "Partner F"));
}
public List<Partner> getList() {
return list;
}
public void setList(List<Partner> list) {
this.list = list;
}
}
解决方法:
组件的使用:
<my:PartnerSelComp value="#{myBean.partnerId}" service="#{partnerService}"/>
组件 xhtml:
<cc:interface componentType="partnerSelComp">
<cc:attribute name="value" type="java.lang.Long"/>
<cc:attribute name="service"/>
</cc:interface>
<cc:implementation>
<span id="#{cc.clientId}" style="white-space:nowrap">
<p:inputText id="id" type="hidden" binding="#{cc.partnerId}"/>
<p:inputText id="code" binding="#{cc.code}">
<p:ajax event="blur" update="id code name" listener="#{cc.validate}" />
</p:inputText>
<p:inputText id ="name" disabled="true" binding="#{cc.name}" />
<p:message for="code"/>
</span>
</cc:implementation>
我注意到,我尝试将引用作为属性默认值传递:<cc:attribute name="service" default="#{partnerService}"/>
和 <my:PartnerSelComp value="#{myBean.partnerId}"/>
我不知道为什么,但它对我不起作用,我必须设置 service
属性在 my:PartnerSelComp
中,如上所示。
和支持组件:
@FacesComponent("partnerSelComp")
public class PartnerSelComp extends UIInput implements NamingContainer {
private InputText partnerId;
private InputText code;
private InputText name;
@ManagedProperty("#{partnerService}")
private PartnerService service;
@Override
public void encodeBegin(FacesContext context) throws IOException {
Partner p=null;
Long i = (Long) getValue();
PartnerService service = getAttributeValue("service", null );
if (i != null) {
p = findPartnerById(service.getList(), i);
}
fill( (i==null) , p); // fills the code and name fields
}
@SuppressWarnings("unchecked")
private <T> T getAttributeValue(String key, T defaultValue) {
T value = (T) getAttributes().get(key);
return (value != null) ? value : defaultValue;
}
...
}
我必须使用 getAttributes().get(key)
来获取引用并将其转换为 PartnerService
。
感谢您的回答。
尝试使用html配置界面加载它:
<cc:interface componentType="partnerSelComp">
<cc:attribute name="value" type="java.lang.Long"/>
<cc:attribute name="service" default="#{partnerService}"/>
</cc:interface>
这主要用于 html 实现内部的使用,因为在 bean 内部 class 无论如何您都必须手动获取它:
FacesContext.getCurrentInstance().getAttributes().get("service");
关于直接注入到@FacesComponent 中,在下一版本的 JSF (2.3) 之前是不可能的。
一种可能的解决方法是使用 "@Named
而不是 @FacesComponent
,或者如果您不能这样做,则尝试使用 http://omnifaces.org/ 库的一些功能。它可以注入到@FacesConverter 中,所以也许您也可以将它应用于此注释。
如何在支持组件中使用 @ManagedProperty
?
这是合作伙伴选择器复合组件。该组件检查数据库中键入的合作伙伴代码,如果代码有效,则填写合作伙伴名称。
组件:
<cc:interface componentType="partnerSelComp">
<cc:attribute name="value" type="java.lang.Long"/>
</cc:interface>
<cc:implementation>
<span id="#{cc.clientId}" style="white-space:nowrap">
<p:inputText id="id" type="hidden" binding="#{cc.partnerId}"/>
<p:inputText id="code" binding="#{cc.code}">
<p:ajax event="blur" update="id code name" listener="#{cc.validate}" />
</p:inputText>
<p:inputText id ="name" disabled="true" binding="#{cc.name}" />
<p:message for="code"/>
</span>
</cc:implementation>
在 encodeBegin()
我得到了 NPE 因为 service
是空的:
@FacesComponent("partnerSelComp")
public class PartnerSelComp extends UIInput implements NamingContainer {
private InputText partnerId;
private InputText code;
private InputText name;
@ManagedProperty("#{partnerService}")
private PartnerService service;
@Override
public void encodeBegin(FacesContext context) throws IOException {
Partner p=null;
Long i = (Long) getValue();
if (i != null) {
p = findPartnerById(service.getList(), i);
}
fill( (i==null) , p); // fills the code and name fields
}
...
}
这是我要访问的 bean。 (稍后它将替换为 JPA 查询。)
@ManagedBean(name = "partnerService")
@ApplicationScoped
public class PartnerService {
private List<Partner> list;
public PartnerService() {
list = new ArrayList<>();
list.add( new Partner(1, "A", "Partner A"));
list.add( new Partner(2, "B", "Partner B"));
list.add( new Partner(3, "C", "Partner C"));
list.add( new Partner(4, "D", "Partner D"));
list.add( new Partner(5, "E", "Partner E"));
list.add( new Partner(6, "E", "Partner F"));
}
public List<Partner> getList() {
return list;
}
public void setList(List<Partner> list) {
this.list = list;
}
}
解决方法:
组件的使用:
<my:PartnerSelComp value="#{myBean.partnerId}" service="#{partnerService}"/>
组件 xhtml:
<cc:interface componentType="partnerSelComp">
<cc:attribute name="value" type="java.lang.Long"/>
<cc:attribute name="service"/>
</cc:interface>
<cc:implementation>
<span id="#{cc.clientId}" style="white-space:nowrap">
<p:inputText id="id" type="hidden" binding="#{cc.partnerId}"/>
<p:inputText id="code" binding="#{cc.code}">
<p:ajax event="blur" update="id code name" listener="#{cc.validate}" />
</p:inputText>
<p:inputText id ="name" disabled="true" binding="#{cc.name}" />
<p:message for="code"/>
</span>
</cc:implementation>
我注意到,我尝试将引用作为属性默认值传递:<cc:attribute name="service" default="#{partnerService}"/>
和 <my:PartnerSelComp value="#{myBean.partnerId}"/>
我不知道为什么,但它对我不起作用,我必须设置 service
属性在 my:PartnerSelComp
中,如上所示。
和支持组件:
@FacesComponent("partnerSelComp")
public class PartnerSelComp extends UIInput implements NamingContainer {
private InputText partnerId;
private InputText code;
private InputText name;
@ManagedProperty("#{partnerService}")
private PartnerService service;
@Override
public void encodeBegin(FacesContext context) throws IOException {
Partner p=null;
Long i = (Long) getValue();
PartnerService service = getAttributeValue("service", null );
if (i != null) {
p = findPartnerById(service.getList(), i);
}
fill( (i==null) , p); // fills the code and name fields
}
@SuppressWarnings("unchecked")
private <T> T getAttributeValue(String key, T defaultValue) {
T value = (T) getAttributes().get(key);
return (value != null) ? value : defaultValue;
}
...
}
我必须使用 getAttributes().get(key)
来获取引用并将其转换为 PartnerService
。
感谢您的回答。
尝试使用html配置界面加载它:
<cc:interface componentType="partnerSelComp">
<cc:attribute name="value" type="java.lang.Long"/>
<cc:attribute name="service" default="#{partnerService}"/>
</cc:interface>
这主要用于 html 实现内部的使用,因为在 bean 内部 class 无论如何您都必须手动获取它:
FacesContext.getCurrentInstance().getAttributes().get("service");
关于直接注入到@FacesComponent 中,在下一版本的 JSF (2.3) 之前是不可能的。
一种可能的解决方法是使用 "@Named
而不是 @FacesComponent
,或者如果您不能这样做,则尝试使用 http://omnifaces.org/ 库的一些功能。它可以注入到@FacesConverter 中,所以也许您也可以将它应用于此注释。