spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.NonRegisteringDriver
url: jdbc:mysql://localhost:3306/0326carbon?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
username: root
password: 123456
mybatis-plus:
mapper-locations: classpath:mapper/*.xml #扫描所有mybatis的xml文件
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.qianfeng.mapper.MesProjectMapper">
</mapper>
