|
|
c3c07ff1e7
|
refactor: 标准化微服务命名并添加日志配置
- 将所有微服务名称添加 aioj- 前缀 (auth-service -> aioj-auth-service)
- 更新网关路由配置以使用新的服务名称
- 为所有服务添加 logback-spring.xml 日志配置
- 更新 .gitignore 排除 uploads 和 logs 目录
Co-Authored-By: Claude <noreply@anthropic.com>
|
2026-01-18 15:49:38 +08:00 |
|
|
|
a4575cebd4
|
refactor: 重构安全架构,提取通用安全模块到common-security
- 将JwtAuthenticationFilter、JwtUtil、JwtProperties从auth服务移至common-security模块
- 新增common-security通用安全模块,提供JWT认证、权限验证等核心安全功能
- 重命名SecurityConfiguration为AuthSecurityConfiguration,使用common-security的filter
- 新增JacksonConfiguration配置类,统一JSON序列化配置
- 新增头像更新功能AvatarUpdateRequestDTO
- 移除冗余的UserLoginResponseDTO类
- 更新各服务模块的依赖配置以引入common-security模块
- 新增README.md项目说明文档
Co-Authored-By: Claude <noreply@anthropic.com>
|
2026-01-12 01:54:21 +08:00 |
|
|
|
2e2697140c
|
feat :AIOJ 后端模块并更新项目结构
- 引入了新模块:gateway、judge service、question service、user service 和 UPMS。
- 在 gateway 和 user service 模块中创建了 package-info.java 文件用于文档说明。
- 更新了 pom.xml 文件以反映新的模块结构和依赖关系。
- 在 UserController 中实现了基本的用户资料管理端点。
- 为每个新模块添加了扁平化 POM 文件以有效管理依赖。
- 增强了项目属性,以实现更好的版本管理和模块间一致性。
|
2026-01-10 14:46:36 +08:00 |
|
|
|
3657f88970
|
feat: 实现邮箱绑定与解绑功能
- 实现邮箱绑定接口,支持通过验证码绑定邮箱
- 实现邮箱解绑接口,支持用户解绑已绑定的邮箱
- 添加BindEmailRequest DTO用于邮箱绑定请求
- 完善Swagger文档注解,提升API文档可读性
Co-Authored-By: Claude <noreply@anthropic.com>
|
2026-01-10 00:05:32 +08:00 |
|
|
|
dfcb7d978b
|
test: 添加邮件服务测试类
- 新增EmailServiceTest测试类
- 测试验证码发送功能
- 测试连续发送验证码覆盖逻辑
- 新增application-test.yml测试配置
Co-Authored-By: Claude <noreply@anthropic.com>
|
2026-01-09 23:57:42 +08:00 |
|
|
|
7aacad2596
|
fix: 优化邮件发送服务
- 邮件发送者名称设置为"AIOJ"
- 添加UnsupportedEncodingException异常处理
- 新增RedisKeyConstants常量类统一管理Redis Key
Co-Authored-By: Claude <noreply@anthropic.com>
|
2026-01-09 23:57:09 +08:00 |
|
|
|
47a468096d
|
feat: 实现邮箱验证码和邮箱绑定功能
- 添加邮件发送服务实现(EmailService/EmailServiceImpl)
- 新增发送验证码、绑定邮箱、解绑邮箱接口
- 用户实体新增邮箱相关字段(userEmail/userEmailVerified)
- 添加邮件配置和JavaMailSender Bean
- 放行邮箱验证码接口(/v1/user/email/send-code)
- 新增ContextHolderUtils工具类用于获取当前用户上下文
- 完善Swagger文档注解
Co-Authored-By: Claude <noreply@anthropic.com>
|
2026-01-09 23:53:19 +08:00 |
|
|
|
05aeef2f79
|
fix: 网关聚合文档实现
|
2026-01-08 00:50:32 +08:00 |
|
|
|
4a4a010f83
|
feat: 添加swagger公共模块并重构API文档依赖
- 新增 aioj-backend-common-swagger 模块用于统一管理API文档相关依赖
- 从 BOM 中移除 knife4j 依赖,改为按需引入到各服务模块
- 更新 auth、gateway、user-service、upms 等服务的 pom.xml 配置
- 显式指定 springdoc-openapi 版本以兼容 Spring Boot 3.5.x
- 添加依赖排除以避免版本冲突
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
|
2026-01-08 00:48:37 +08:00 |
|
|
|
d04440f0b1
|
fix: 避免gateway不需要其错误处理而导致报错的问题
|
2025-12-14 15:17:51 +08:00 |
|
|
|
63d0528af4
|
fix: 修复网关启动找不到服务的问题,修复jwt问题,修复自动导入失败问题。
|
2025-12-14 15:02:24 +08:00 |
|
|
|
c61ee69561
|
fix: 修复日志功能
|
2025-12-08 22:51:51 +08:00 |
|
lirui
|
6f7963a73b
|
feat:依赖修复,完善core和mybatis还有log模块,log模块待完成
|
2025-11-25 17:06:50 +08:00 |
|
lirui
|
d89960f51c
|
feat: 添加代码格式化
|
2025-11-25 13:53:29 +08:00 |
|
|
|
7a3d3a06ba
|
fix: 重新设计依赖,添加多个模块
|
2025-11-24 23:42:00 +08:00 |
|
|
|
3603d450e8
|
feat: 实现刷新token逻辑
|
2025-11-20 23:13:33 +08:00 |
|
|
|
c03876e29e
|
refactor: 拆分出认证服务
|
2025-11-20 22:43:05 +08:00 |
|
|
|
f93ec43915
|
fix: 修复依赖问题
|
2025-11-20 00:33:27 +08:00 |
|
|
|
9b28ef0a37
|
feat: 引入spring security和oauth2库还有jwt库,实现基本的注册功能和登录功能
|
2025-11-19 23:12:35 +08:00 |
|
|
|
09a5674672
|
feat: User-Service 初始化
|
2025-11-17 23:44:53 +08:00 |
|
|
|
d2c1407393
|
fix: 修复依赖异常
|
2025-11-17 22:38:06 +08:00 |
|
|
|
66aa55d5c3
|
项目初始化
|
2025-11-12 23:02:53 +08:00 |
|