非常感谢 工学云项目
本项目在 工学云项目的项目基础上进行了封装
本项目是基于Springboot3 的工学云蘑菇钉每日签到项目,每天自动签到,无需人工干预,无需手机APP.
- 项目基于Springboot3开发,使用Maven进行项目管理,可以自行使用Docker进行容器化部署
- 项目使用了Springboot3、Spring、SpringMVC、Mybatis、Mybatis-Plus、HttpClient等技术。
- JDK 17
- Maven 3.9
- Mysql 8
- 服务器 1核2G
spring:
#数据库配置
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
username: username
password: password
url: jdbc:mysql://localhost:3306/autosign
# 自行替换数据库链接
#发送邮件
mail:
host: smtp.163.com
username: # 邮箱账号
password: #授权码
default-encoding: UTF-8
protocol: smtp
properties:
mail:
smtp:
auth: true
starttls:
enable: true
required: true
ssl:
enable: true
required: true
socketFactory:
class: javax.net.ssl.SSLSocketFactory
fallback: false
port: 465
timeout: 5000