springboot配置mybatis
Posted dianzan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot配置mybatis相关的知识,希望对你有一定的参考价值。
<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version> </dependency> <!-- 数据库驱动 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <!-- 数据库连接池 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>$druid.version</version> </dependency>
yml
mybatis:
mapper-locations: classpath*:com/chris/modular/**/dao/mapping/*.xml
以上是关于springboot配置mybatis的主要内容,如果未能解决你的问题,请参考以下文章