在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>