首页 > 编程语言 > 详细

springboot值mybatis 别名等配置

时间:2018-10-24 00:08:02      阅读:784      评论:0      收藏:0      [点我收藏+]

在application配置文件中添加如下:

mybatis:
  #该配置替换在sql-config-map中的typeAliases配置
  type-aliases-package: com.ww.wwta.model
  config-location: classpath:config/sql-map-config.xml
  # 该配置不能同时与sql-config-map里的mappers存在
  mapper-locations: classpath:config/mapper/*.xml

说明:

1、type-aliases-package: com.ww.wwta.model 该配置等效在mybatis配置文件中加:
<typeAliases>
    <typeAlias     alias="xxModel" type="com.xx.model.xxModel"/>
</typeAliases>
2、mapper-locations: classpath:config/mapper/*.xml类似在mybatis配置中加:
<mappers>
     <mapper resource="com.xx.mapper.xxMapper"></mapper>
</mappers>
 
 

springboot值mybatis 别名等配置

原文:https://www.cnblogs.com/kingsonfu/p/9840326.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!