R2DBC无法读取oracle数据库的URL

R2DBC can not read the URL of oracle database

我尝试使用 application.properties 文件配置 oracle 的连接,但它给我一个 IllegalArgumentException 消息“无效 URL: r2dbc:oracle:thin:@localhost:1521:orcl”,当我设置 MySql URL 时很好。这是我的 application.properties:

spring.r2dbc.url=r2dbc:oracle:thin:@localhost:1521:orcl
spring.r2dbc.username=account
spring.r2dbc.password=account

请给我一个解释或解决方案,谢谢。

请尝试

spring.r2dbc.url=r2dbc:oracle:thin://localhost:1521:orcl