springboot值mybatis 别名等配置
Posted king西阳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot值mybatis 别名等配置相关的知识,希望对你有一定的参考价值。
在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 别名等配置的主要内容,如果未能解决你的问题,请参考以下文章
springboot整合mybatis(SSM开发环境搭建)