无法解析类或包 H2

Posted

技术标签:

【中文标题】无法解析类或包 H2【英文标题】:Cannot resolve class or Package H2 【发布时间】:2019-01-14 19:00:21 【问题描述】:

我为我的 Spring 应用程序使用 H2 数据库。问题是,一切正常。我可以访问、存储和重新连接到数据库。但是,我的 IDE 收到警告

此时

spring.datasource.driver-class-name=org.h2.Driver

这有点令人困惑,因为我不知道是否以及如何处理它。这里曾经是similar question,但答案没有帮助,我不知道是否允许我再次提出这个问题,或者我是否应该在现有线程中发布我的问题?

这是我的 application.properties

spring.datasource.url=jdbc:h2:file:~/afile;DB_CLOSE_ON_EXIT=FALSE;AUTO_RECONNECT=TRUE
spring.datasource.username=no:)
spring.datasource.password=no:)
spring.datasource.driver-class-name=org.h2.Driver
#spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.H2Dialect

我的 POM

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.3.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>10</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.5.6</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-websocket</artifactId>
        <version>2.0.3.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <version>1.4.197</version>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.security</groupId>
        <artifactId>spring-security-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.webjars</groupId>
        <artifactId>jquery</artifactId>
        <version>3.3.1-1</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-jdbc</artifactId>
        <version>2.0.4.RELEASE</version>
    </dependency>
    <!--      <dependency>
              <groupId>org.springframework</groupId>
              <artifactId>spring-jdbc</artifactId>
              <version>5.0.7.RELEASE</version>
          </dependency>-->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
        <version>2.0.4.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-entitymanager</artifactId>
        <version>5.3.2.Final</version>
    </dependency>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-core</artifactId>
        <version>5.3.2.Final</version>
    </dependency>
    <dependency>
        <groupId>javax.xml.bind</groupId>
        <artifactId>jaxb-api</artifactId>
        <version>2.3.0</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <version>2.0.3.RELEASE</version>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.webjars</groupId>
        <artifactId>bootstrap</artifactId>
        <version>4.1.1</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-annotations</artifactId>
        <version>2.9.6</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-core</artifactId>
        <version>2.9.6</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-databind</artifactId>
        <version>2.9.6</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

【问题讨论】:

您是说一切正常,但只是 IDE 会发出警告。您使用的 IDE 是什么? Intellij Ultimate 2018.2 您是否尝试重新导入?例如。在 pom.xml 中右击 -> Maven -> Reimport ? 试过了。但正如我所说,导入工作很明显,否则我无法使用数据库对吗? 是的,我明白了。问题是有时IDE在它应该看到的东西时看不到东西。您是在 IDE 中运行应用程序还是使用例如一个控制台?您也可以尝试重新导入整个项目。我已将您的 pom.xml 和 application.properties 复制到我的 IntelliJ Community 2018.2 中,看起来不错 - 我什至对提到的部分进行了代码完成... 【参考方案1】:

我以前见过这个——我很确定这是因为你的数据库驱动程序在你的 POM 中有&lt;scope&gt;runtime&lt;/scope&gt;。这意味着在编译时驱动程序不在类路径中,我猜属性文件检查正在使用编译时类路径。

如果您从依赖项中删除范围,检查错误应该会消失。

【讨论】:

是的。不知何故,删除该范围和刷新导入和使缓存无效以及删除文件夹 .m2 中的 mysql 存储库文件夹的组合设法解决了问题。 将其发布到 JetBrains 的 YouTrack 以防万一他们可以解决:youtrack.jetbrains.com/issue/IDEA-201137

以上是关于无法解析类或包 H2的主要内容,如果未能解决你的问题,请参考以下文章

Intellij 无法识别 h2 表

如何在某些 java 类或包上限制 createObject()?

Log4j配置具有相同类或包的不同记录器级别

JVM 性能排查 自己做的笔记

H2 数据库 CSVREAD 和日期转换

nslookup 报告“无法解析 '(null)':名称无法解析”,尽管它成功解析了 DNS 名称