Is it possible to add datasource url parameters as an extra property? Or do I always have to append them directly to the url as query parameters?
Example:
spring.datasource.url=jdbc:mysql://localhost/test?useSSL=false&tinyInt1isBit=false
I'd prefer adding them, pseudocode:
spring.datasource.url.meta.useSSL=false
spring.datasource.url.meta.tinyInt1isBit=false
Possible somehow?