[스프링] XML 기반의 ApplicationContext를 설정하는 방법

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

백엔드 공부

목록 보기
5/9

Spring Framework에서 XML 기반의 ApplicationContext를 설정하는 방법

  1. 파일이 루트 디렉터리에 있고 특정 클래스를 사용하여 로드
    ApplicationContext context = new 
    	ClassPathXmlApplicationContext("aop002.xml",Start.class);
  1. 두 번째 코드는 파일이 하위 폴더에 있으며 추가 매개변수 없이 로드
    ApplicationContext context = new
    		ClassPathXmlApplicationContext("aop002/aop002.xml");
profile
24년도까지 프로젝트 두개를 마치고 25년에는 개발 팀장을 할 수 있는 실력이 되자!

0개의 댓글