@Primary and @Qualifier annotations are essential tools in Spring for managing multiple bean implementations and resolving dependency injection ambiguity. This article explores their usage and best practices.
Key features include:
@Configuration
public class PaymentConfig {
@Bean
@Primary
public PaymentService creditCardPaymentService() {
return new CreditCardPaymentService();
}
@Bean
public PaymentService paypalPaymentService() {
return new PayPalPaymentService();
}
}
@Service
public class OrderService {
private final PaymentService paymentService;
@Autowired
public OrderService(@Qualifier("paypalPaymentService") PaymentService paymentService) {
this.paymentService = paymentService;
}
public void processOrder(Order order) {
paymentService.processPayment(order.getAmount());
}
}
@Configuration
public class NotificationConfig {
@Bean
@Primary
public NotificationService emailNotificationService() {
return new EmailNotificationService();
}
@Bean
@Qualifier("sms")
public NotificationService smsNotificationService() {
return new SMSNotificationService();
}
}
Issue | Solution |
---|---|
Multiple beans found | Use @Primary or @Qualifier to specify the bean |
Qualifier not working | Check bean name matches qualifier value |
Primary bean conflicts | Ensure only one @Primary bean per type |
@Primary and @Qualifier annotations are powerful tools for managing bean selection in Spring applications. Understanding when and how to use them is crucial for building maintainable and flexible applications.
Remember to use these annotations judiciously and document your bean selection strategy for better code maintainability.