본문 바로가기

개발/스프링

스프링 3.0.7 이클립스 Indigo 버전으로 환경 구성하기

1. 먼저 스프링 3.0.7 버전은 없으므로 다운로드 받습니다.(다른버전)

springframework-3.0.7.RELEASE-with-docs.z01

springframework-3.0.7.RELEASE-with-docs.z02

springframework-3.0.7.RELEASE-with-docs.z03

springframework-3.0.7.RELEASE-with-docs.z04

springframework-3.0.7.RELEASE-with-docs.zip




2.  위의 5개 파일을 다운로드 하여 압축을 풉니다.




3. common-log4j 관련 jar파일이 없으므로 아래파일을 다운 받거나 아파치 사이트에서 다운 받습니다.

commons-logging-1.1.1.jar





4. 다음 그림처럼 이클립스 사이트에 접속하여 다운로드 받습니다.





5. 이클립스를 실행시키고 java-project를 하나 만들고 그 프로젝트 명에서 아래 그림처럼 우클릭 하여 spring 라이브러리적용시킵니다.







6. 이제 spring 압축 푼 곳의 아래 경로에 가서 다음 파일을 실행시킵니다.(레퍼런스 문서 보기)

C:\springframework-3.0.7.RELEASE\docs\spring-framework-reference\htmlsingle\spring-framework-reference.html




7. 여기서 3.2.1 Configuration metadata의 xml 파일 내용을 복사해서 이클립스에 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.xsd">

  <bean id="..." class="...">
    <!-- collaborators and configuration for this bean go here -->
  </bean>

  <bean id="..." class="...">
    <!-- collaborators and configuration for this bean go here -->
  </bean>

  <!-- more bean definitions go here -->

</beans>



8. 3.2.3 Using the container 내용의 포함시켜 사용하면 application에서의 환경설정은 끝입니다.

// create and configure beans
ApplicationContext context =
    new ClassPathXmlApplicationContext(new String[] {"services.xml", "daos.xml"});

// retrieve configured instance
PetStoreServiceImpl service = context.getBean("petStore", PetStoreServiceImpl.class);

// use configured instance
List userList service.getUsernameList();




'개발 > 스프링' 카테고리의 다른 글

스프링 : 개발 환경 구축  (0) 2013.09.11