Skip to content

Instantly share code, notes, and snippets.

@fabriciofx
Forked from rponte/Carro.java
Created April 6, 2014 05:36
Show Gist options
  • Select an option

  • Save fabriciofx/10001892 to your computer and use it in GitHub Desktop.

Select an option

Save fabriciofx/10001892 to your computer and use it in GitHub Desktop.
@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