1) Configure the Container
Selected bean metadata:
Bean: paymentGateway
Type: PaymentGateway
Impl: UpiGateway
Scope: singleton
class OrderService {
private final PaymentGateway gateway;
OrderService(PaymentGateway gateway) {
this.gateway = gateway;
}
void placeOrder() {
gateway.pay();
}
}