https://github.com/spring-projects/spring-framework/wiki/Build-from-Source
위 가이드를 이용해서 소스코드를 빌드했다.
차례대로 따라가면 문제 없이 소스코드를 불러올 수 있다.
Dependency List
1. Git
2. JDK 8 Update 60 ↑
Windows인 경우엔 power shell, 리눅스나 MAC인 경우 터미널을 켜고 작업하면 된다.
먼저, 소스코드를 Git으로부터 내려받는다.
git clone https://github.com/spring-projects/spring-framework.git
cd spring-framework
웬만하면 git 명령어로 소스 코드를 받아오는 것이 좋다.
zip 파일을 직접 받아 압축을 해제하는 것은 권장하지 않는다.
(git 설정을 따로 해줘야 해서 귀찮다)
소스코드를 받아왔으면 gradle로 build를 해준다.
내려받은 spring framework의 소스 코드 위치에서 실행해야 한다.
작업량이 많아 꽤 오랜 시간이 소요된다.
./gradlew build
git repository가 연결되어 있지 않으면 빌드 과정에서 git 관련 에러를 내뱉는다.
(이래서 git clone으로 내려받으라고 권장한 것)
process 'command 'git'' finished with non-zero exit value 128
빌드가 완료되었다면 webmvc 모듈에 문제가 없는지 점검해야 한다.
./gradlew -a :spring-webmvc:test
문제 없이 완료되었다면 소스 코드를 IDE로 불러와서 보면 된다.
일반적으로 많이 사용하는 Eclipse나 IntelliJ를 권장한다(나는 IntelliJ를 사용했다).
각 IDE에 import하는 방법은 아래 링크를 참조한다.
1. Eclipse
https://github.com/spring-projects/spring-framework/blob/master/import-into-eclipse.md
2. IntelliJ
https://github.com/spring-projects/spring-framework/blob/master/import-into-idea.md
여기까지 하면 Spring framework를 열어볼 준비가 완료된 것이다.
근데 언제 다 본담..
'Java > Spring framework' 카테고리의 다른 글
Spring framework core (4) - Environment (0) | 2020.01.12 |
---|---|
Spring framework core (3) - Bean scope (0) | 2020.01.12 |
Spring framework 소스 코드 읽어보기 - Bean 생성 원리 (1) (0) | 2020.01.06 |
Spring framework core (2) - ApplicationContext (0) | 2020.01.05 |
Spring framework core (1) IoC Container와 Bean (0) | 2020.01.05 |