The built-in qualifiers @Default and @Any
Join the DZone community and get the full member experience.
Join For Free• @Default - Whenever a bean or injection point does not explicitly
declare a qualifier, the container assumes the qualifier @Default.
• @Any – When you need to declare an injection point without specifying
a qualifier, is useful to know that all beans have the @Any qualifier.
This qualifier “belongs” to all beans and injection points (not
applicable when @New is present) and when is explicitly specified you
suppress the @Default qualifier. This is useful if you want to iterate
over all beans with a certain bean type.
The example presented in
this post will prove how @Any qualifier works in a useful example. You
will try to iterate over all beans with a certain bean type. For start,
you define a new Java type, like below – a simple interface representing
a Wilson tennis racquet type:
package com.racquets;Now, three Wilson racquets will implement this interface – notice that no qualifier was specified:
public interface WilsonType {
public String getWilsonRacquetType();
}
package com.racquets;
public class Wilson339Racquet implements WilsonType{
@Override
public String getWilsonRacquetType() {
return ("Wilson BLX Six.One Tour 90 (339 gr)");
}
}
package com.racquets;
public class Wilson319Racquet implements WilsonType {
@Override
public String getWilsonRacquetType() {
return ("Wilson BLX Six.One Tour 90 (319 gr)");
}
}
package com.racquets;
public class Wilson96Racquet implements WilsonType {
@Override
public String getWilsonRacquetType() {
return ("Wilson BLX Pro Tour 96");
}
}
Next, you can use the @Any qualifier at injection point to iterate over all beans of type WilsonRacquet. An instance of each implementation is injected and the result of getWilsonRacquetType method is stored in an ArrayList:
package com.racquets;
import java.util.ArrayList;
import javax.enterprise.context.RequestScoped;
import javax.enterprise.inject.Any;
import javax.enterprise.inject.Instance;
import javax.enterprise.inject.Produces;
import javax.inject.Inject;
import javax.inject.Named;
@RequestScoped
public class WilsonRacquetBean {
private @Named @Produces ArrayList wilsons = new ArrayList();
@Inject
void initWilsonRacquets(@Any Instance racquets) {
for (WilsonType racquet : racquets) {
wilsons.add(racquet.getWilsonRacquetType());
}
}
}
From a JSF page, you can easily iterate over the ArrayList (notice here that the wilsons collection was annotated with @Named (allows JSF to have access to this field) and @Produces (as a simple explanation, a producer field suppress the getter method)):
<br/><h3><b>The built-in qualifiers @Default and @Any</b></h3>
<h:form>
<h:dataTable value="#{wilsons}" var="item" border="1">
<h:column>
<f:facet name="header" >
<h:outputText value="Racquets"/>
</f:facet>
<h:outputText value="#{item}"/>
</h:column>
</h:dataTable>
</h:form>
The output is in figure below:
From http://e-blog-java.blogspot.com/2011/04/built-in-qualifiers-default-and-any.html
Opinions expressed by DZone contributors are their own.
Comments