mybatisplus设置连接优先级
时间: 2024-02-02 22:10:27 浏览: 64
DSP中断优先级的设置
5星 · 资源好评率100%
根据提供的引用内容,mybatis-plus设置连接优先级的方法如下:
1. 使用`mybatis-plus.mapper-locations`属性设置Mapper文件的位置。该属性的值为一个路径,可以使用通配符`*`来匹配多个文件。例如,`classpath*:mybatis/*.xml`表示在classpath下的mybatis目录中查找所有的xml文件作为Mapper文件。
2. 使用`mybatis-plus.config-location`属性设置MyBatis的配置文件位置。该属性的值为一个路径,例如`classpath:mybatis-config.xml`表示在classpath下查找名为mybatis-config.xml的配置文件。
通过以上两种方式,可以设置mybatis-plus的连接优先级,确保正确加载Mapper文件和配置文件。
阅读全文