-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support new line for YAML configuration #577
Labels
Comments
能否提供具体配置。yaml的标准配置是可以换行么?能否提供相关的参考信息 |
yaml支持换行的 |
感谢提供参考意见。能否提供pull request,使您成为sharding-jdbc的贡献者。 |
fixed at 2.0.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please answer these questions before submitting your issue. Thanks!
获取数据源换行
String dataSources = propertyResolver.getProperty("names");
建议 OrchestrationSpringBootConfiguration文件
line77
String dataSources = propertyResolver.getProperty("names");
加一个去空格处理
改为 String dataSources = propertyResolver.getProperty("names").trim();
Which version of Sharding-Jdbc do you using?
Expected behavior
Actual behavior
Steps to reproduce the behavior
Please provide the reproduce example codes (such as github link)
Code should based on https://github.com/shardingjdbc/sharding-jdbc-example
The text was updated successfully, but these errors were encountered: