Hi - I am trying to follow the tutorial on mongo db at : https://docs.liquibase.com/workflows/database-setup-tutorials/mongodb.html
The problem is in the example, it conencts to a local mongodb deployment and I want to connect to Mongo Atlas.
In the liquibase.properties file the advise is to put - “url: mongodb://hostname:27017/myDatabase”
However, Atlas URL should be “mongodb+srv://hostname:27017/myDatabase”
Liquibase does not seem to like this, it throws an exception:
Cannot find database driver: Driver class was not specified and could not be determined from the url
Surely connecting to mongo atlas should be possible? Please guide me as to how?
Thanks