驱动程序org.h2.驱动程序声明不接受jdbcUrl,jdbc:postgresql://my-previous-db

mwg9r5ms  于 2022-11-05  发布在  Spring
关注(0)|答案(1)|浏览(896)

我尝试在我的新项目中使用H2数据库,在我使用postgres之前。在www.example.com中写入所有数据application.properties,pom文件中也没有关于postgres驱动程序的任何内容,只有H2驱动程序,但在自动配置过程中,每次它尝试连接到我以前的数据库时,结果显示此错误。
Driver org.h2.Driver claims to not accept jdbcUrl, jdbc:postgresql://{my-previous-db-url}
有人能帮忙解决这个问题吗?
application.properties

spring.datasource.generate-unique-name=false
spring.datasource.name=taco
spring.datasource.url=jdbc:h2:mem:taco
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=user
spring.datasource.password=password
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect

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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.7.5</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>MyProject</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>MyProject</name>
    <description>TacoExample</description>
    <properties>
        <java.version>17</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</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>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-webflux</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <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>io.projectreactor</groupId>
            <artifactId>reactor-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

我不知道该怎么做,试图找到任何有关家长pom.file的信息,但没有成功

**UPDATE:**还忘了如果我在配置中指定数据源bean,一切都没问题。但是我不明白Sping Boot 通过自动配置将URL带到previos数据库的哪里

ql3eal8s

ql3eal8s1#

此错误是由于项目尚未编译。您在项目中使用了spring-boot-devtools。但插件在运行或调试过程中自动停止编译,此时需要构建项目。
您可以执行以下操作:
1.停止项目,删除目标文件夹并生成项目。
1.运行项目并进行尝试。
你还需要检查一下配置devtools的想法,可能会有什么问题。你可以用Jrebel代替devtools。

相关问题