Questions tagged «intellij-inspections»

30
IntelliJ检查给出“无法解析符号”但仍编译代码
平台:IntelliJ社区版10.0.3 SDK:jdk1.6.0_21 操作系统:Windows 7 所以我在IntelliJ上遇到了一个奇怪的情况,这使我感到完全困惑。我设置了一个Maven项目,并将log4j作为依赖项添加到pom.xml文件中。IDEA检查运行正常,我的单元测试全部编译并运行。 然后,我使用mvn install:install-file将hunnysoft的jmime库添加到本地maven存储库中,如下所示。 mvn install:install-file -Dfile=jmime.jar -DgroupId=jmime \ -DartifactId=jmime -Dversion=3.1.1e -Dpackaging=jar Maven将jar文件安装到我的本地存储库中就可以了。 然后,我进入IntelliJ的Settings => Maven => Repository Services,并更新了我的本地存储库(以便IntelliJ重新索引存储库内容)。 最后,我在pom.xml文件中添加了以下依赖性(仅在log4j依赖性之上)。 <dependency> <groupId>jmime</groupId> <artifactId>jmime</artifactId> <version>3.1.1e</version> </dependency> 我现在创建一个新类,如下所示: package com.stackoverflow.question; import org.apache.log4j.Logger; import com.hunnysoft.jmime.ByteString; import com.hunnysoft.jmime.Field; import com.hunnysoft.jmime.FieldBody; public class StackOverflowQuestion { public Field create(String name, String text) { …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.