스프링 환경 설정 중, 다음과 같이 pom.xml에 의존성 추가 작업을 하고 있었다.
<!-- MyBatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.8</version>
</dependency>
<!-- MyBatis-Spring -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.2.2</version>
</dependency>
정상적으로 저장이 되면, 라이브러리가 다운로드 되어야 하는데... 그냥 잠잠 하였다 ㅡㅡㅋ
이 오류는 어떻게 해결해야 할까? 방법을 찾아보니 의외로 간단히 해결되었다.
바로 다음과 같이, maven update를 실행하기만 하면 되는 것이었으니 이 얼마나 간편한가?
프로젝트 마우스오른쪽 클릭 > Update Maven Dependencies 실행
- Force Update of Snapshots/Release 체크 후 확인 클릭
'Dev. Debug > 프로그램' 카테고리의 다른 글
Unhandled exception type Exception (0) | 2015.11.09 |
---|---|
Error: java.lang.NoClassDefFoundError: org/junit/runners/model/MultipleFailureException (0) | 2015.11.09 |
Don't know how to iterate over supplied "items" in <forEach> (0) | 2015.05.21 |
[MyBatis] There is no getter for property named 에러 (0) | 2015.03.07 |
java.lang.NoClassDefFoundError: javax/servlet/SessionCookieConfig (0) | 2015.03.06 |