| | |
| | | driver-class-name: com.mysql.cj.jdbc.Driver |
| | | max-conn-lifetime-millis: 20 |
| | | test-on-return: false |
| | | |
| | | mail: |
| | | host: smtp.qq.com # 设置邮箱主机(服务商),这里使用QQ邮件服务器 |
| | | username: 909710561@qq.com # 设置用户名 - 发送方 |
| | | password: vimrublcqpktbdjh # 设置密码,该处的密码是QQ邮箱开启SMTP的授权码而非QQ密码 |
| | | properties: |
| | | mail: |
| | | smtp: |
| | | auth: true # 必须进行授权认证,它的目的就是阻止他人任意乱发邮件 |
| | | socketFactory: |
| | | port: 465 |
| | | class: javax.net.ssl.SSLSocketFactory |
| | | fallback: false |
| | | starttls: #SMTP加密方式:连接到一个TLS保护连接 |
| | | enable: true |
| | | required: true |
| | | protocol: smtp |
| | | port: 465 |
| | | default-encoding: UTF-8 |
| | | mybatis-plus: |
| | | mapper-locations: classpath:mapper/*.xml |
| | | global-config: |