Spring boot app integrate with Harishicope vault mongo Secrets Engines

I’m working with spring boot appilication, I use below credential for connect “bookshop” database.

spring.datasource.url=jdbc:mysql://localhost:3306/bookshop`
spring.datasource.username=root
spring.datasource.password=password

These credential are in “application.properties” file. I want to store these credential in “Harishicope vault” instead of keeping in “application.properties” file & use these credential to connet to db. I can do this with kv secret engine but how to do with “mongoDB” secret engine. I search documentation to integrate spring boot engine to mongoDB secret engine. But I couldn’t find. Is there any documentation or video regarding this. If any any video or documentation exists please provide link

Thank you