2024-06-30 08:15:35 +00:00
|
|
|
|
# PageHelper分页插件
|
|
|
|
|
pagehelper:
|
|
|
|
|
helperDialect: mysql
|
|
|
|
|
supportMethodsArguments: true
|
|
|
|
|
params: count=countSql
|
|
|
|
|
|
|
|
|
|
createSqlSessionFactory:
|
|
|
|
|
use: mybatis
|
|
|
|
|
|
2024-04-20 07:53:34 +00:00
|
|
|
|
# MyBatis配置
|
2024-05-01 09:34:43 +00:00
|
|
|
|
mybatis:
|
|
|
|
|
# 搜索指定包别名
|
|
|
|
|
typeAliasesPackage: com.ruoyi.**.domain
|
|
|
|
|
# 配置mapper的扫描,找到所有的mapper.xml映射文件
|
|
|
|
|
mapperLocations: classpath*:mapper/**/*Mapper.xml
|
|
|
|
|
# 加载全局的配置文件
|
|
|
|
|
configLocation: classpath:mybatis/mybatis-config.xml
|
2024-04-20 07:53:34 +00:00
|
|
|
|
|
2024-01-15 18:09:33 +00:00
|
|
|
|
# MyBatis Plus配置
|
|
|
|
|
mybatis-plus:
|
|
|
|
|
# 搜索指定包别名
|
|
|
|
|
typeAliasesPackage: com.ruoyi.**.domain
|
|
|
|
|
# 配置mapper的扫描,找到所有的mapper.xml映射文件
|
|
|
|
|
mapperLocations: classpath*:mapper/**/*Mapper.xml
|
|
|
|
|
# 加载全局的配置文件
|
|
|
|
|
configLocation: classpath:mybatis/mybatis-config.xml
|