Skip to content

Instantly share code, notes, and snippets.

@Qkyrie
Created December 5, 2013 10:05
Show Gist options
  • Save Qkyrie/7802948 to your computer and use it in GitHub Desktop.
Save Qkyrie/7802948 to your computer and use it in GitHub Desktop.
A Custom Qualifier for Spring
<bean class="example.SimpleMovieCatalog">
<qualifier type="example.Genre" value="Comedy"/>
<!-- inject any dependencies required by this bean -->
</bean>
@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Qualifier
public @interface Offline {
}
@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Qualifier
public @interface Genre {
String value();
}
<bean class="example.SimpleMovieCatalog">
<qualifier type="Offline"/>
<!-- inject any dependencies required by this bean -->
</bean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment