我在application.properties中如下配置了3个mongo数据库
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration
spring.data.mongodb.employeeMgmt.repositories.enabled=true
spring.data.mongodb.employeeMgmt.uri=mongodb://localhost:27017/employee-db
spring.data.mongodb.agentMgmt.repositories.enabled=true
spring.data.mongodb.agentMgmt.uri=mongodb://localhost:27017/agent-db
spring.data.mongodb.reportMgmt.repositories.enabled=true
spring.data.mongodb.reportMgmt.uri=mongodb://localhost:27017/report-db
是否可以在一个变量中使用IP localhost:27017
,并在各处使用它代替mongodb://localhost:27017
。因此,如果仅更改IP变量,它将反映3个或更多