手可摘星_陈
2020-11-30 10:24
mybatis:
mapper-locations: classpath:mapper/*.xml
config-location: classpath:config/mybatis-config.xml
mapper-locations和config-location作用是什么?什么时候需要配置?
自己曾经做过的项目是这两个都需要配置,这次就默认写了两个,但是一直不能启动。后来发现与老师写的差了一个config-location,很诧异这个为什么不需要配置这个?求大神指导原因
当你需要使用mybatis-config.xml 配置文件的时候你就需要配置config-location,config-location的作用是确定mybatis-config.xml文件位置的,而mapper-locations是用来注册你写的xxxmapper.xml文件。如果你使用了mybatis-config.xml,并且里面配置了mapper,那就不需要mapper-locations,
SpringBoot构建电商基础秒杀项目
49065 学习 · 954 问题
相似问题