공부해요/Spring

20160924 스프링 강의 1-3

예쁜꽃이피었으면 2016. 9. 24. 15:38

< 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'


}




반응형