Is there a way to disable the @Inject annotation processing of spring 3.0?
I’m trying to use the CDI @Conversation Scope together with spring, but when it comes to
@Inject
private Conversation conversation;
spring tries to autowire the conversation which obviously failed.
I don’t think you can. But spring has its own conversation support – take a look at spring web flow.