DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Functional Endpoints: Alternative to Controllers in WebFlux
  • Spring, IoC Containers, and Static Code: Design Principles
  • Building a CRUD Application With Spring and SimpleJdbcMapper
  • How to Marry MDC With Spring Integration

Trending

  • Building a Vector Index in Azure AI Search: HNSW, Profiles, and RAG Retrieval
  • Engineering Closed-Loop Graph-RAG Systems, Part 4: Evaluating a Graph-RAG System
  • Testing Is Not About Finding Bugs
  • Why Your AI Agent's Logs Aren't Earning Trust
  1. DZone
  2. Coding
  3. Frameworks
  4. The built-in qualifiers @Default and @Any

The built-in qualifiers @Default and @Any

By 
A. Programmer user avatar
A. Programmer
·
Apr. 21, 11 · Interview
Likes (0)
Comment
Save
Tweet
Share
8.8K Views

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;

public interface WilsonType {
public String getWilsonRacquetType();
}

Now, three Wilson racquets will implement this interface – notice that no qualifier was specified:
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

Bean (software) Spring Framework

Opinions expressed by DZone contributors are their own.

Related

  • Functional Endpoints: Alternative to Controllers in WebFlux
  • Spring, IoC Containers, and Static Code: Design Principles
  • Building a CRUD Application With Spring and SimpleJdbcMapper
  • How to Marry MDC With Spring Integration

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook