mybatis-plus在application.yml中如何增加plugins节点
时间: 2023-05-22 08:07:11 浏览: 126
mybatis-plus-annotation-3.5.3.2.jar
您可以在application.yml中增加以下代码来增加plugins节点:
```yaml
mybatis-plus:
global-config:
db-config:
id-type: auto
plugins:
- com.example.MyPlugin
```
其中,`com.example.MyPlugin`是您自定义的插件类的完整路径。请确保您已经正确添加了MyPlugin类并在其中实现了您需要的功能。
阅读全文