使用 Spring Boot 2 和 MongoTamplete 测试与 MongoDb 的连接
Test connection with MongoDb using Spring Boot 2 with MongoTamplete
我需要定期测试我与 MongoDB 的连接,为此我想使用 MongoTemplate。
我该怎么做?
谢谢。
您可以使用 Spring Boot Actuator。包括 Actuator 依赖项。在 application.properties 中包括 management.endpoint.health.show-details=ALWAYS。现在您应该能够看到 Mongo 连接的状态。
我需要定期测试我与 MongoDB 的连接,为此我想使用 MongoTemplate。
我该怎么做?
谢谢。
您可以使用 Spring Boot Actuator。包括 Actuator 依赖项。在 application.properties 中包括 management.endpoint.health.show-details=ALWAYS。现在您应该能够看到 Mongo 连接的状态。