项目导入到idea中发现报错,如图
出现这种问题的原因是jar包冲突,导致冲突的原因是maven的依赖性
解决办法:
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
保存后,波浪线就没了
有喜欢的朋友可以关注下头条号《》