https://spring.io/guides/gs/accessing-data-mongodb/ - 该示例未显示连接到Mongo DB的使用情况。
答案 0 :(得分:0)
默认的spring数据如果你没有在applicaiton.properties
文件中声明任何配置属性,mongo db就会连接你的localhost
例如
使用mongod
命令启动mongodb服务器,启动应用程序并进行任何CRUD
操作后,在命令提示符中查看日志
如果您的应用程序需要特殊服务器uri或任何配置属性
添加application.properties
文件此属性并配置
例如
spring.data.mongodb.uri=mongodb://user:secret@mongo1.example.com:12345,mongo2.example.com:23456/test
这为你的uri配置了收藏品名称
并使用此
声明主机和端口spring.data.mongodb.host=mongoserver
spring.data.mongodb.port=27017
还有更多属性知识(例如:用户名和密码设置):https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html