17

我有一个带有用户对象方法的@SessionScoped @Namedbean :@Producer

@Named @SessionScoped
public class UserBean implements Serializable
{
  //...
  @Named @Produces @LoggedIn @SessionScoped
  public MyUser getCurrentUser() {return user;}
}

这在我的设置(JBoss-7.1.1-Final)中运行良好,并且使用#{currentUser.name}. 限定词是org.jboss.seam.security.annotations.LoggedIn。现在我想@Inject这个用户在另一个@NamedBean 的一个字段中:

@Named
public class FavBean implements Serializable
{   
  private @Inject @LoggedIn MyUser currentUser;
}

这给了我错误:

org.jboss.weld.exceptions.DeploymentException:
WELD-001409 Ambiguous dependencies for type [MyUser] with qualifiers [@Default] at
  injection point [[field] @Inject @LoggedIn test.FavBean.currentUser].
Possible dependencies [[Managed Bean [class test.ejb.MyUser] with qualifiers
  [@Any @Default],
Producer Method [MyUser] with qualifiers [@Any @Default] declared as [[method]
  @Named @Produces @LoggedIn @SessionScoped public test.UserBean.getCurrentUser()]]]

我不明白第一个依赖Managed Bean [class test.ejb.MyUser]这个类是一个简单的@Entity并且部署在一个EAR中的ebb.jar中。作为一种解决方法,我目前正在UserBean从那里注入 get the user 。

4

4 回答 4

22

这是因为 CDI 按类型搜索 bean,并且您的实体和生产者方法返回相同的类型。这就是为什么它是模棱两可的。

您需要定义一个新的限定符并使用您的生产者方法对其进行注释。

@Qualifier
@Retention(RUNTIME)
@Target({METHOD, FIELD, PARAMETER, TYPE})
public @interface CurrentUser {
}

将此注释添加到您的生产者方法中:

@Named @Produces @CurrentUser @LoggedIn @SessionScoped
public MyUser getCurrentUser() {return user;}
于 2012-04-17T06:44:38.663 回答
5

我有非常相似的问题,我得到了一些离线帮助。我的问题是,我的服务在哪里,它包含在部署的耳朵和我的网络项目中。这是一个意外的重复,删除一个,如果它也是你的情况,它也会起作用。

在下面的图片中,我在 esb_khr_web 中有 esb_khr,我删除了。在 Eclipse 中:转到属性和部署程序集。

在此处输入图像描述

于 2013-03-19T10:39:12.850 回答
4

我不是专家,但我遇到了类似的问题,我以更简单的方式修复了它,用 注释 bean 本身@Alternative,以便生产者受到青睐。可能是我错过了一些副作用,但据我所见/需要,这很有效。

于 2016-07-21T20:45:24.027 回答
2

请仔细检查您的上下文中没有 beans.xml 的多个实例。就我而言,我在 WEB-INF 和 META-INF 中有 beans.xml。从 META-INF 中删除 beans.xml 后,类似的问题得到了解决。

于 2020-01-23T18:55:47.253 回答