MyBatis学习之运行测试方法时出现java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing错误(原因及解决方法)
错误原因:junit是4.11版本,从4.11版本起,junit中不再包含hamcrest的jar包
解决方案:手动在pom.xml中添加hamcrest-core-1.3.jar
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>