driver org.postgresql.driver claims to not accept jdbcurl, jdbc:h2:mem:test

tech2023-08-22  90

driver org.postgresql.driver claims to not accept jdbcurl, jdbc:h2:mem:test

背景:项目中使用了h2数据库,不想用h2,把配置改为PostgreSQL,出现此异常。

原因:数据库配置被Spring cloud覆盖

解决:

bootstrap.yml中新增配置:

--- spring: profiles: frank cloud: config: enabled: false

 

最新回复(0)