报错:
例如Test cannot be resolved to a type
代码:
public class testJar {
@Test
public void test01() {
System.out.println("测试jar包使用范围");
}
}
解释:
查看pom发现scope(范围)标签的值是test,所以只能在测试文件中使用JUnit
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
其他同类报错也是一样的解决方案,主要都是因为范围引起的错误
解决:
讲scope标签的值test改为compile
补充:
test:指的是该jar包只能在测试程序中使用,不能在主程序中使用;只参与生命周期中的编译打包,不参与部署
provided:指的是jar包可以在主程序和测试程序中使用,只参与项目生命周期中的编译打包,不参与部署
compile:jar包默认作用范围,可以在主程序中使用,也可以在测试程序中使用,并且参与项目生命周期所有阶段