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
additional-spring-configuration-metadata.json存在以下内容
{ "name": "spring.datasource.druid.filter.stat.enabled", "type": "java.lang.Boolean", "sourceType": "com.mmtrix.base.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration", "description": "Enable StatFilter.", "defaultValue": false }
其中的 com.mmtrix.base.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration 这个类名是错误的,正确的应该是 com.alibaba.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration。我看了1.2.24中的代码是这个com.alibaba.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration。
com.mmtrix.base.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration 这个类根本不存在,导致idea在配置时无法提供代码提示,并且 spring.datasource.druid.filter 相关配置也不能正确配置,不知是不是这个文件导致的。我手动注入一个Slf4jLogFilter才得以解决问题
The text was updated successfully, but these errors were encountered:
yml无法提示
Sorry, something went wrong.
No branches or pull requests
additional-spring-configuration-metadata.json存在以下内容
其中的 com.mmtrix.base.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration 这个类名是错误的,正确的应该是 com.alibaba.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration。我看了1.2.24中的代码是这个com.alibaba.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration。
com.mmtrix.base.druid.spring.boot3.autoconfigure.stat.DruidFilterConfiguration 这个类根本不存在,导致idea在配置时无法提供代码提示,并且 spring.datasource.druid.filter 相关配置也不能正确配置,不知是不是这个文件导致的。我手动注入一个Slf4jLogFilter才得以解决问题
The text was updated successfully, but these errors were encountered: