We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
大部分兼容mysql语法的信创数据库不需要这些插件,只要吧驱动包放到plugins目录,然后正确配置驱动类就好了很简单。 例如nacos-dm-datasource-plugin-ext的实现,既然全都是空实现继承 Base*的,那么说明完全没有必要存在这个插件,除非是有不兼容的语法才需要定制插件。
nacos-dm-datasource-plugin-ext
Base*
我们只需要把驱动包放入plugins目录,然后配置如下
plugins
spring.datasource.platform=mysql db.pool.config.driverClassName=dm.jdbc.driver.DmDriver db.url.0=jdbc:dm://[ip]:[port]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
大部分兼容mysql语法的信创数据库不需要这些插件,只要吧驱动包放到plugins目录,然后正确配置驱动类就好了很简单。
例如
nacos-dm-datasource-plugin-ext
的实现,既然全都是空实现继承Base*
的,那么说明完全没有必要存在这个插件,除非是有不兼容的语法才需要定制插件。我们只需要把驱动包放入
plugins
目录,然后配置如下The text was updated successfully, but these errors were encountered: