springboot整合mybatis当中的一些问题?

url: jdbc:mysql://127.0.0.1:3306/zjhtest?serverTimezone=GMT%2B8

 

今天在看代码的时候发现一些问题,springboot整合mybatis代码,dao层mapper接口与相应的xml映射文件写在一起的话,只需要在启动类上面扫描mapper接口文件就可以了,而将xml映射文件放到classpath目录下的mapper目录下则需要在application.yml文件中配置xml文件扫描的路径。

如图所示:

 1 server:
 2   port: 8080
 3  
 4 spring:
 5   datasource:
 6     username: root
 7     password: 1234
 8     url: jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
 9     driver-class-name: com.mysql.jdbc.Driver
10  
11 mybatis:
12   mapper-locations: classpath:mapping/*Mapper.xml
13   type-aliases-package: com.example.entity
14  
15 #showSql
16 logging:
17   level:
18     com:
19       example:
20         mapper : debug

 

还有一个问题,最新版的mysql需要指定时区,配置如下图所示:

 

url: jdbc:mysql://127.0.0.1:3306/zjhtest?serverTimezone=GMT%2B8

 

 

csdn上面一个博客写的springboot整合mybatis文件写的不错,这里把链接放下面,感兴趣的小伙伴可以去看一下。

文章标题:springboot整合mybatis?

链接地址:https://blog.csdn.net/iku5200/article/details/82856621

 

springboot整合mybatis当中的一些问题?

上一篇:牛逼!Python的判断、循环和各种表达式(长文系列第②篇)(二)


下一篇:贪心算法