欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

spring boot 之 Mybatis 配置

程序员文章站 2022-05-01 16:54:25
############################## mybatis配置 ######################################mybatis.configuration.call-setters-on-nulls=true #entity扫描的包名mybatis.ty ......

############################## mybatis配置 ######################################
mybatis.configuration.call-setters-on-nulls=true

#entity扫描的包名
mybatis.type-aliases-package=mydemo.entity

#mapper.xml所在的位置
mybatis.mapper-locations=classpath*:com/mydemo/mapper/*/*mapper.xml
mapper.mappers=mydemo.common.dao.basemapper

#在控制台输出sql返回数据。
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.stdoutimpl

#控制台打印字段
logging.level.mydemo.mapper=trace