String[] config = new String[] { "applicationContext.xml" };
config 에 applicationContext.xml을 넣고
ApplicationContext context = new ClassPathXmlApplicationContext(config);
ApplicationContext를 context 레퍼변수로 설정하여 config를 불러와서 config 안에 있는 모든 class객체를 생성 시킨다.
MemberService p = (MemberServiceImpl) context.getBean("service");
context에서 getBean으로 bean 중 id가 service인 beand을 불러와서
MeberService 에 저장 시킨다.
'개발자 > Spring' 카테고리의 다른 글
HTTP Status 500 - java.lang.LinkageError: loader constraint violation 에러시 (0) | 2013.04.22 |
---|---|
스프링 프레임웍 jar 파일 (1) | 2013.03.05 |
Spring 기본 환경설정 프로젝트 (0) | 2013.03.04 |
applicationContext.xml (0) | 2013.03.04 |
Spring 초기 환경설정 (0) | 2013.03.04 |