스프링을 통한 의존성 주입-@Autowired vs. @Resource vs. 태그 1) XML 설정-한 개의 빈이 id 없이 tire 인터페이스를 구현한 경우 //expert006.xml .... //Car.java-@Resource를 이용한 tire 속성 주입 public class Car { @Resource Tire tire; public String getTireBrand() { return "장착된 타이어: "+tire.getBrand(); } } //Car.java-@Autowired를 이용한 tire 속성 주입 public class Car { @Autowired Tire tire; public String getTireBrand() { return "장착된 타이어: "+tire.getBr..