博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java.lang.ClassNotFoundException: org.junit.Before
阅读量:6006 次
发布时间:2019-06-20

本文共 1062 字,大约阅读时间需要 3 分钟。

hot3.png

1、真是郁闷啊。明明已经添加了junit的依赖但是启动服务的时候老是报错

2015-01-24 16:00:22 [org.springframework.core.type.classreading.AnnotationAttributesReadingVisitor]-[DEBUG] Failed to class-load type while reading annotation metadata. This is a non-fatal error, but certain annotation metadata may be unavailable.

java.lang.ClassNotFoundException: org.junit.BeforeClass

 at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1680)

 at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1526)

 at org.springframework.core.type.classreading.RecursiveAnnotationAttributesVisitor.visitEnd(AnnotationAttributesReadingVisitor.java:180)

 at org.springframework.asm.ClassReader.readAnnotationValues(ClassReader.java:1491)

 at org.springframework.asm.ClassReader.readMethod(ClassReader.java:909)

解决方案是将pom.xml的<scope>test</scope> 删除:

<dependency>

        <groupId>junit</groupId>

        <artifactId>junit</artifactId>

        <version>4.12</version>

        <scope>test</scope>

 </dependency>

之前用的是spring3*版本也没出现这个问题。到了spring4*就出这个问题了。

转载于:https://my.oschina.net/u/260244/blog/371365

你可能感兴趣的文章
php基础知识【函数】(5)正则preg
查看>>
C# 接口的作用浅谈举例
查看>>
python字符串内建函数
查看>>
为了工作必须弄死面试算法题
查看>>
用visual studio 2017来调试python
查看>>
Tony's tour(poj1739,男人题之一,插头dp)
查看>>
C# 委托和事件 实现窗体间的通信
查看>>
怎么成为合格的WEB前端开发工程师
查看>>
CF459E Pashmak and Graph (DP?
查看>>
CMD命令行窗口 复制黏贴
查看>>
PHP autoload实践
查看>>
实时消息平台NSQ的特性
查看>>
文件夹复制器
查看>>
转载:简约不简单的APP界面设计欣赏
查看>>
python---网络爬虫
查看>>
SignalR .net及时通讯
查看>>
说说lambda表达式与表达式树(未完)
查看>>
14-数组与指针
查看>>
AIX中经常使用的SMIT 的使用
查看>>
LeetCode 06 ZigZag Conversion
查看>>