本文主要是介绍MyBatis学习之运行测试方法时出现java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing错误(原因及解决方法),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
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>
这篇关于MyBatis学习之运行测试方法时出现java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing错误(原因及解决方法)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!