작성
·
340
0
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-aop'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
위와 같이 싱글 쿼터 안에 의존 객체명(?)을 넣어주는데,
xml 설정을 할 때에는 maven repository 사이트에서 검색해서
복붙 해왔는데, 위의 정확한 의존 객체명들은 어디서 검색할 수 있고
가져올 수 있을까요?
답변 1
1
안녕하세요. for5while님, 공식 서포터즈 OMG입니다.
implementation 'org.springframework.boot:spring-boot-starter-aop'
가 필요하다고 가정하고 찾는 과정을 보여드릴게요.
1) 접속
2) 의존성 검색
3) 버전 선택
4) Gradle (Short) 선택 후 , 콜론(:)과버전은 삭제
감사합니다.
만약 implementation 'org.springframework.boot:spring-boot-starter-aop' 가 필요하다는 것 자체를 개발하면서 알아야 할 때는 해당 의존성이 없어서 문제에 직면했을 때 관련된 문제를 검색하면 됩니다.
https://github.com/spring-projects/spring-boot/wiki
를 참고하면 스프링이 버전업 됨에 따라 바뀐 정보를 얻을 수 있습니다.
https://github.com/spring-projects/spring-boot/issues
를 참고하면 스프링부트 개발하면서 발생한 문제들에 대한 개발자들의 질문과 답변들을 확인할 수 있습니다.