Or, can I bound a custom implementation of org.springframework.beans.factory.config.Scope interface with a specific @Scope-annotated annotation?

For example, I have customized a new scope type:

@javax.inject.Scope @Retention(RUNTIME)
@interface Conversation {}

class ConversationScope implements Scope { ... }

class ConversationScopeConfigurer extends BeanFactoryPostProcessor
    { beanFactory.registerScope("conversation", new ConversationScope()); }

Now I want to use it as,

@Component
@Conversation
class Topic { ... }

instead of,

@Component
@org.springframework.context.annotation.Scope("conversation")
class Topic { ... }

Is it possible?

Is there something like "AnnotationPostProcessor" in spring-context?

link|improve this question

If it doesn't work out of the box with <context:annotation-driven/> or <context:component-scan/>, then it likely won't work at all. – skaffman Mar 21 '11 at 19:03
feedback

1 Answer

up vote 5 down vote accepted

It seems to be possible by registering a custom scope resolver with your <context:component-scan>

See also this example of a bridge for JSR-299 annotations if you need to customize your solution a little bit more.

link|improve this answer
+1 for the great example. – Xie Jilei Mar 21 '11 at 22:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.