@ConversationScoped
public class BackingBean
{
@Inject Conversation conversation;
public BackingBean() {}
...
}
Why is Intellij giving me a warning: "Unsatisfied dependency: no bean matches the injection point."
The CTRL+F1 detail message is "Detect injection points that have ambiguous dependencies."
It compiles and deploys and seems to run fine on JBoss e.g. I'm able to conversation.begin(), conversation.end(), etc.