在 Maven 中,我有很多 IntelliJ 导入的依赖项。我也有一个CSVReader
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.2</version>
</dependency>
在使用它的课程中,我有import com.opencsv.CSVParser;
. 它说,“无法解析符号 CSVParser”。它为我提供了将库添加到类路径的选项。我上次这样做时犹豫不决,它解决了错误,但不允许我运行我的 Spring Boot 应用程序。为什么不能像其他库一样只导入库?