2020
11-29
11-29
浅谈myBatis中的插件机制
插件的配置与使用在mybatis-config.xml配置文件中配置plugin结点,比如配置一个自定义的日志插件LogInterceptor和一个开源的分页插件PageInterceptor:<plugins><plugininterceptor="com.crx.plugindemo.LogInterceptor"></plugin><plugininterceptor="com.github.pagehelper.PageInterceptor"><propertyname="helperDialect"value="oracle"/></plugin></plugins>插件的工作原理借助责任链模式,定义一系列的过滤器...
继续阅读 >