Test类添加后 报错:程序包org.junit不存在解决


 

<dependency> <groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
 <!-- 作用域范围为test -->
 <scope>test</scope> </dependency>


将<scope>test</scope>注释掉即可

如下:
<dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>4.7</version>
</dependency>

 

原因:scope的作用范围问题,注释掉即可

上一篇:“Error:(3, 24) java: 程序包org.junit不存在”的3种解决方法


下一篇:Restlet 一个返回 JSON 的服务器