转换器中的注入在JSF 2.3中不起作用

问题描述 投票:0回答:1

服务器:Pyra 5.183。

使用转换器时,会引发NullPointerException,因为注入的EJB为null(System.out.println打印“null”)。

如果我使用在JSF 2.3之前使用的解决方法:@Name替换@FacesConverter,它可以工作(注入非空)。

转换器:

@FacesConverter(value = "compteConverter", managed = true)
public class CompteConverter implements Converter<CompteBancaire> {

  @EJB
  private GestionnaireCompte gestionnaireCompte;

  @Override
  public CompteBancaire getAsObject(FacesContext context, UIComponent component, String id) {
    if (id == null || id.isEmpty()) {
      return null;
    }
    try {
      System.out.println("*****EJB gestionnaireCompte=" + gestionnaireCompte);
      return gestionnaireCompte.getCompte(Long.parseLong(id));
    } catch (NumberFormatException e) {
      throw new ConverterException(new FacesMessage("Id de compte invalide"), e);
    }
  }

  @Override
  public String getAsString(FacesContext arg0, UIComponent arg1, CompteBancaire compte) { ... }

使用此转换器:

  <ui:define name="metadata">
    <f:metadata>

      <f:viewParam name="id" value="#{operations.compte}"
                     converter="compteConverter"/>

这是Mojarra / Payara的错误(managed = true无法正常工作)或者你能帮我找到我的错误吗?

jsf cdi converters
1个回答
0
投票

托管转换器默认不起作用。为了使它们工作,我添加了一个由@FacesConfig注释的CDI bean(对于要使用的JSF 2.3)和@ApplicationScoped(它将是带有此注释的CDI bean)。

© www.soinside.com 2019 - 2024. All rights reserved.