+ 스프링 설정 파일 이용한 코드 테스트하기

코린이서현이·2024년 1월 24일
0

오류해결👍

목록 보기
6/12

package expert003;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Driver {
public static void main(String[] args) {
System.out.println("스프링 의존성 주입 - 스프링 설정 파일에서 속성을 주입");

ApplicationContext context = new ClassPathXmlApplicationContext("expert003/expert003.xml");

//속성까지 모두 주입한 객체를 전달 받는다.
Car car = context.getBean("car", Car.class);
System.out.println(car.getTireBrand()); //장착된 타이어:코리안 타이어

}
}

profile
24년도까지 프로젝트 두개를 마치고 25년에는 개발 팀장을 할 수 있는 실력이 되자!

0개의 댓글