springboot 2.0 mybatis mapper-locations扫描多个路径的实现
短信预约 -IT技能 免费直播动态提醒
springboot 2.0 mybatis mapper-locations扫描多个路径
mapper-locations扫描多个路径,中间以,分开,
如果mapper.xml在源码包下,配置成classpath*开头比较好使
mybatis:
mapper-locations: classpath*:mapper*Mapper.xml
type-aliases-package: com.urthink.upfs.springbootmybatis.entity
#IDENTITY: MYSQL #取回主键的方式
#notEmpty: false #insert和update中,是否判断字符串类型!=''
configuration:
#进行自动映射时,数据以下划线命名,如数据库返回的"order_address"命名字段是否映射为class的"orderAddress"字段。默认为false
map-underscore-to-camel-case: true
# 输出SQL执行语句 (log4j2本身可以输出sql语句)
#log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #这种带结果集
maven 打包源码包下的资源文件,如xml
<build>
<resources>
<resource>
<directory>class="lazy" data-src/main/resources</directory>
<!-- <excludes>
<exclude>***.xml</exclude>
</excludes> -->
<includes>
<include>***.xml</include>
<include>***.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341