< Bean선언 후 사용하기 >
1. dependencies 추가하기..?
build.gradle을 열고
기본으로 설정되어 있는
dependencies {
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
이건 안쓸거니까 지운다.
사용할 건 spring-context !
https://mvnrepository.com/ 이곳에서 필요한 것을 검색해서 내 소스에 붙여넣는다.
spring으로 검색해서 spring Context를 찾음
가장 최신버전을 사용할 거고 gradle을 쓰니까
https://mvnrepository.com/artifact/org.springframework/spring-context/4.3.3.RELEASE
// https://mvnrepository.com/artifact/org.springframework/spring-context
compile group: 'org.springframework', name: 'spring-context', version: '4.3.3.RELEASE'
이거 복사 후 dependencies 안에 넣어 준다.
dependencies {
compile group: 'org.springframework', name: 'spring-context', version: '4.3.3.RELEASE'
}
반응형
'공부해요 > Spring' 카테고리의 다른 글
2.용어정리(2)-IoC,DI,Bean (0) | 2021.12.08 |
---|---|
20160924 스프링 강의 1-2 < 프로젝트 깃허브랑 연동 시키기> (0) | 2016.09.24 |
20160924 스프링 강의 1-1 < 환경설정 > (0) | 2016.09.24 |
Spring MVC - @Controller (0) | 2015.06.15 |