5

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?

Lenik
  • 13,946
  • 17
  • 75
  • 103

1 Answers1

8

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

For example:

<context:component-scan base-package="com.company" scope-resolver="org.springframework.context.annotation.Jsr330ScopeMetadataResolver" />

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

Brice Roncace
  • 10,110
  • 9
  • 60
  • 69
Thomas
  • 2,231
  • 1
  • 19
  • 27