We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For user the Twilio auto-configuration, it requires some prerequisites.
jongo
Dependency is used to create an instance of the Jongo class.
spring.data.mongodb.database
Database name.
In a Spring configuration file (application.yml or application.properties)
application.yml
application.properties
spring: data: mongodb: database: MY_DATABASE_NAME
In an annotated Java class annotation Component (or derivative):
Component
@Service public class CustomService { @Autowired private Jongo client; }