Spring 의 개발 환경 구축 및 테스트용기 에서 자주 사용 하 는 두 가지 방식

Spring 개발 환경 구축 및 테스트      용기 에서 자주 사용 하 는 두 가지 방식   빈 을 세 가지 예화 하 는 방식.
다운로드 주소:http://www.springsource.org/download/community?project=Spring%2520Framework
 
기본 패키지
dist\spring.jar
lib\jakarta-commons\commons-logging.jar
절단면 프로 그래 밍 (AOP) 을 사용 했다 면 다음 jar 파일 이 필요 합 니 다.
lib / aspectj / aspectjweaver. jar 와 aspectjrt. jar
lib/cglib/cglib-nodep-2.1_3.jar
JSR - 250 의 주 해 를 사용 했다 면 @ Resource / @ PostConstruct / @ PreDestroy 와 같이 다음 jar 파일 이 필요 합 니 다.
lib\j2ee\common-annotations.jar
 
건설 절차.
1. spring 에 필요 한 가방 추가 (dist \ spring. jar, lib \ jakarta - comons \ comons - logging. jar)
2. beans. xml 파일 설정
3. 설정 파일 을 불 러 와 서 오류 가 발생 했 는 지 확인 합 니 다.잘못 보고 하지 않 은 것 은 건설 에 성공 했다 는 것 을 설명 한다.
 
2. beans. xml (기본 경로 src / beans. xml, 경로 수정 가능)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

</beans>

 
3. 프로필 불 러 오기
Test.java
package com.dwt1220;

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

public class Test {

	public static void main(String[] args) {
		ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");
	}

}

 
용기 에서 자주 사용 하 는 두 가지 방식:
정례 화 봄
방법 1:
클래스 경로 에서 설정 파일 을 찾 아 용 기 를 예화 합 니 다.
ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[]{"beans.xml"});
방법 2:
파일 시스템 경로 에서 설정 파일 을 찾 아 용 기 를 예화 합 니 다.
ApplicationContext ctx = new FileSystemXmlApplicationContext(new String[]{“d:\\beans.xml“});
Spring 의 프로필 은 여러 개 를 지정 할 수 있 으 며 String 배열 을 통 해 들 어 올 수 있 습 니 다.

좋은 웹페이지 즐겨찾기