2026-02-28 17:51:15 +08:00
|
|
|
server:
|
|
|
|
|
port: 8080
|
|
|
|
|
|
|
|
|
|
spring:
|
|
|
|
|
datasource:
|
|
|
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
|
|
|
url: jdbc:mysql://localhost:3306/reading_platform?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
|
|
|
|
|
username: root
|
|
|
|
|
password: root
|
|
|
|
|
jackson:
|
|
|
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
|
|
|
time-zone: Asia/Shanghai
|
|
|
|
|
serialization:
|
|
|
|
|
write-dates-as-timestamps: false
|
|
|
|
|
|
feat(backend): 补全所有未提交的 Java 源码文件
新增 44 个此前仅在本地存在、从未提交到 git 的源码文件:
- Controllers: FileUpload, AdminStats, AdminTheme, AdminCoursePackage,
AdminCourseLesson, AdminResource, AdminOperationLog,
School(Course/Schedule/Settings/Stats/Export/OperationLog/CoursePackage),
Teacher(Dashboard/Schedule/SchoolCourse/CourseLesson)
- Entities: CourseLesson, CoursePackage, SchoolCourse, Theme
- Mappers: CourseLesson, CoursePackage, SchoolCourse, Theme
- Services: All 13 service classes
- Config: WebMvcConfig
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-03 13:51:33 +08:00
|
|
|
flyway:
|
|
|
|
|
enabled: true
|
|
|
|
|
locations: classpath:db/migration
|
|
|
|
|
baseline-on-migrate: true
|
|
|
|
|
|
|
|
|
|
file:
|
|
|
|
|
upload:
|
|
|
|
|
path: ./uploads/
|
|
|
|
|
base-url: /uploads/
|
|
|
|
|
|
2026-02-28 17:51:15 +08:00
|
|
|
logging:
|
|
|
|
|
level:
|
|
|
|
|
com.reading.platform: debug
|
|
|
|
|
com.baomidou.mybatisplus: debug
|