使用idea创建了一个maven工程, ***使用jdk里的api报错 ****使用pom.xml 中配置好的 junit 里的api报错 <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies>
我最后把idea恢复默认设置就好了,应该是我改了编辑器的某个东西,导致解析不了java文件的关键字
把<scope>test</scope>删除试一下
我看别人用都没有加test
没有添加test默认是compile
当scope是test时,这个依赖只能在test目录下的测试代码中使用,不能在main目录下的主业务代码中使用
我是在test目录下是用的,是我没描述清楚,抱歉。