1.1、新建spring boot 项目
省略了一些不重要的步骤,一直下一步 直到完成。
1.2、 新建配置文件 application.yml
server:
port: 8080
spring:
datasource:
url: jdbc:mysql://localhost:3306/test?serverTimezone=GMT%2B8
username: root
password: 123456
driver-class-name: com.mysql.cj.jdbc.Driver
mybatis:
mapper-locations:
- classpath:mapper/*.xml
1.3、配置mybatis
设置扫描dao层路径:
@MapperScan("com.example.demo.dao")
以上