编程语言
首页 > 编程语言> > MyBatis学习之运行测试方法时出现java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing错误(原因及解决方法)

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>

标签:lang,4.11,java,1.3,NoClassDefFoundError,org,SelfDescribing,hamcrest
来源: https://blog.csdn.net/xhy123_/article/details/121124478