Skip to content

Instantly share code, notes, and snippets.

@rponte
Created November 7, 2013 21:40
Show Gist options
  • Select an option

  • Save rponte/7362292 to your computer and use it in GitHub Desktop.

Select an option

Save rponte/7362292 to your computer and use it in GitHub Desktop.
Example of Spring annotation, @qualifier
@Component
public class Carro {
private Motor motor;
@Autowired
public Carro(@Qualifier("motorAGasolina") Motor motor) {
this.motor = motor;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment