# stream-reactive-webflux-learn **Repository Path**: yunhoio/stream-reactive-webflux-learn ## Basic Information - **Project Name**: stream-reactive-webflux-learn - **Description**: 学习流编程、函数式编程、响应式编程的demo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-07 - **Last Updated**: 2021-06-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # stream webflux 学习stream、webflux的项目实例 相关文档请到云户的博客查看:https://yunho.io 也可以关注云户的公众号: ![云户](docs/imgs/qrcode_for_gh_ca9cbb701f13_258.jpg) 感谢大家支持!!! ## 常见问题 ### mongodb配置问题 ```yaml spring: data: mongodb: uri: mongodb://192.168.3.210:27017/webflux #uri和其他项只能选择一个配置 否则会冲突 username: admin password: xxxx ``` ```shell Invalid mongo configuration, either uri or host/port/credentials must be specified ``` 启动报错,原因是我在配置时 配置了URI,还配置的username和password,资料显示,要么配置uri,要么配置其他项,否则会冲突 正确配置如下: ``` spring: data: mongodb: uri: mongodb://192.168.3.210:27017/webflux ```