返回顶部
首页 > 资讯 > 后端开发 > Python >springboot 2.0 mybatis mapper-locations扫描多个路径的实现
  • 806
分享到

springboot 2.0 mybatis mapper-locations扫描多个路径的实现

2024-04-02 19:04:59 806人浏览 八月长安

Python 官方文档:入门教程 => 点击学习

摘要

SpringBoot 2.0 mybatis mapper-locations扫描多个路径 mapper-locations扫描多个路径,中间以,分开, 如果mapper.xml在源

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>src/main/resources</directory>
                <!-- <excludes>
                    <exclude>***.xml</exclude>
                </excludes> -->
                <includes>
                    <include>***.xml</include>
                    <include>***.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
    </build>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

--结束END--

本文标题: springboot 2.0 mybatis mapper-locations扫描多个路径的实现

本文链接: https://lsjlt.com/news/131374.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作