spring boot 配置mybatis注意事项
2017-08-21 本文已影响17人
huangxiongbiao
1、xml文件需要在resource下面
2、需要配置xml指定的路径
~
mybatis:
mapper-locations: classpath:mappers/*.xml
~
3、需要扫描mapper的路径
~
@MapperScan("com...mapper") //mapper扫描基础包
~
~
mybatis:
mapper-locations: classpath:mappers/*.xml
~
~
@MapperScan("com...mapper") //mapper扫描基础包
~