feat(user-relation): 初始化用户关系服务模块

- 新增用户关注和粉丝数据表结构及对应 DO、Mapper、Service 层代码
- 配置 RedisTemplate 以支持 JSON 格式的值序列化
- 添加全局异常处理器处理业务、参数校验等异常情况
- 完成模块基础配置文件(application.yml、bootstrap.yml)的初始化
- 在 SQL 脚本中新增 t_following 和 t_fans 表定义
- 更新 .gitignore、IDEA 编码设置以及 Maven 模块依赖关系
- 增加日志配置文件 logback-spring.xml 并区分环境输出方式
- 创建模块启动类 HannoteUserRelationBizApplication 并启用 MyBatis Mapper 扫描
This commit is contained in:
Hanserwei
2025-10-10 19:38:37 +08:00
parent cede5282e8
commit 3ce029ecce
24 changed files with 655 additions and 11 deletions

View File

@@ -20,6 +20,7 @@
<module>han-note-distributed-id-generator</module>
<module>han-note-note</module>
<module>han-note-note/han-note-note-biz</module>
<module>han-note-user-relation</module>
</modules>
<properties>