我为我的网络应用预备后端。 在我的项目(SpringBoot + Maven)中,我想添加h2日期库。 根据网络上的教程:
已添加至 application.properties
server.port = 8088
spring.h2.console.enabled=true
spring.h2.console.path=/h2
spring.datasource.url=jdbc:h2:mem:testdb
spring.datasource.username=sa
spring.datasource.password=
spring.datasource.driverClassName=org.h2.Driver //h2 seems to be NOT found
spring.jpa.show-sql=true
为 pom.xml 添加了依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
问题:的
application.properties 中的:&#34;无法解析课程或包裹&#39; h2&#39;&#34;
全面检查:&#34;检查Spring Boot应用程序.properties配置文件。突出显示未解析和已弃用的配置键和无效值。仅适用于Spring Boot 1.2或更高版本。&#34;
当然,我的Spring Boot高于1.2(1.5.8)。 我在网络上发现了类似的问题,但是&#34;重新编码依赖关系&#34;不起作用,所以我仍然没有解决方案:)。请帮忙。
答案 0 :(得分:0)
看起来问题出在您的pom文件中。请查看我使用application.properties
文件检查过的pom.xml文件。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mberazouski.stackoverflow</groupId>
<artifactId>spring-boot-hibernate</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>spring-boot-hibernate</name>
<description>Demo project for Spring Boot And Hibernate</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
<relativePath/>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
一旦你开始春季开机,检查h2-console: http://localhost:8088/h2
希望这会有所帮助。 附:如果您不知道我建议您使用http://start.spring.io/来生成您的项目。在那里,您可以选择您计划使用的任何组件。您可以阅读更多相关信息,例如here。