除了在创建项目时勾选mybatis、导依赖还有:
在properties文件里配置:
#mybatis配置文件的位置
mybatis.mapper-locations = classpath:mapper/*.xml
#mybatis.config-location = classpath:SqlMapConfig.xml
mybatis.type-aliases-package = com.binglibingli.bookstore.entity
#驱动信息
spring.datasource.driver-class-name = com.mysql.cj.jdbc.Driver
spring.datasource.url = jdbc:mysql://localhost:3306/dangdang
spring.datasource.username = root
spring.datasource.password = 666666
为什么springboot项目中没有SqlMapConfig文件?
因为springboot整合了mybatis,即properties文件里把该配的都写上了,所以
<!-- 使用spring整合mybatis时,以下代码可以省略-->
<environments default="……">
<environment id="……">
<transactionManager type="JDBC" />
<dataSource type="POOLED">
<property name="driver" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost/mybatis" />
<property name="username" value="root" />
<property name="password" value="" />
</dataSource>
</environment>
</environments>
<!-- 使用spring整合mybatis时,以下代码也可以省略-->
<mappers>
<mapper resource="com/njupt/pojo/User.xml" />
<mapper resource="com/njupt/pojo/Person.xml" />
<mapper resource="com/njupt/pojo/Order.xml" />
</mappers>
这些代码都可以省略,而省略了这些代码,SqlMapConfig文件里就没有东西了,所以可有可无