springboot使用mybatis的时候有注解和xml两种方式,如果使用xml还可以将配置文件放到jar包外面,不用重新编译直接修改xml中的内容。
mybatis:
mapper-locations: classpath:mapper/*.xml
一般的配置信息如上,这里给出了自己制定xml的路径的方法,所以只要在jar包外面设定application的配置文件就可以动态指定配置文件
mybatis:
mapper-locations: file:mapper/*.xml
这里使用的是file不是path,可以是相对路径,也可以是绝对路径。mapper是jar包同级目录的一个文件,存放xml配置文件。