我有一个配置了jooq的spring boot应用程序。我的application.properties具有以下db配置:
spring.datasource.driverClassName=org.postgresql.Driver
spring.datasource.url= jdbc:postgresql://localhost:5432/springbootdb
spring.datasource.username=postgres
spring.datasource.password=postgres@123
它自动配置DataSource,一切正常。如果我想将属性名称更改为以下内容该怎么办:
datasource.postgresql.url=jdbc:postgresql://localhost:5432/springbootdb
datasource.postgresql.username=postgres
datasource.postgresql.password=postgres@123
我必须使用属性的新名称进一步进行配置更改。有什么帮助吗?