mybatis: mapper-locations
时间: 2023-05-01 17:04:46 浏览: 420
Mybatis-Plus 搭建与使用入门(小结)
mybatis中的mapper-locations用于指定mapper文件的位置。它可以通过在mybatis配置文件中添加<mapper-locations>节点来设置。在该节点中,可以使用类似classpath:和file:等前缀来指定mapper文件的位置,例如<classpath:mapper/*.xml>。这样,mybatis就会自动扫描这个路径下的所有mapper文件,并将它们添加到mybatis的配置中,方便进行访问和查询。
阅读全文