mapper-locations和config-location作用是什么?什么时候需要配置?

来源:2-4 Mybatis自动生成器使用方式

手可摘星_陈

2020-11-30 10:24

mybatis:
  mapper-locations: classpath:mapper/*.xml
  config-location: classpath:config/mybatis-config.xml


mapper-locations和config-location作用是什么?什么时候需要配置?

自己曾经做过的项目是这两个都需要配置,这次就默认写了两个,但是一直不能启动。后来发现与老师写的差了一个config-location,很诧异这个为什么不需要配置这个?求大神指导原因



写回答 关注

1回答

  • qq_宝慕林8073346
    2021-02-04 11:51:13

    当你需要使用mybatis-config.xml 配置文件的时候你就需要配置config-location,config-location的作用是确定mybatis-config.xml文件位置的,而mapper-locations是用来注册你写的xxxmapper.xml文件。如果你使用了mybatis-config.xml,并且里面配置了mapper,那就不需要mapper-locations,

SpringBoot构建电商基础秒杀项目

应用SpringBoot快速搭建拥有用户、商品、交易及秒杀活动的电商秒杀应用。

49065 学习 · 954 问题

查看课程

相似问题