xiongxiaoyang
8da6f8263c
fix: 初始化 Flyway 历史表
...
org.flywaydb.core.api.FlywayException: Found non-empty schema(s)
`novel_test` but no schema history table. Use baseline() or set
baselineOnMigrate to true to initialize the schema history table.
2024-07-15 18:07:29 +08:00
xiongxiaoyang
b4ce4dd35d
perf: 优化SQL脚本文件管理
2024-06-28 07:03:14 +08:00
xiongxiaoyang
63760c8e90
feat: 集成 Flyway
2024-06-28 01:46:16 +08:00
xiongxiaoyang
e7005b9008
build: 更新java版本到21
2024-06-02 14:02:48 +08:00
xiongxiaoyang
876d9b8cbe
build: 使用默认的 Spring Boot 内嵌 Web 容器,实现虚拟线程处理请求
...
Spring Boot v3.3.0-M3 删除了对 Undertow 的虚拟线程支持,因为它会泄漏内存
2024-06-02 12:15:05 +08:00
xiongxiaoyang
9da5064a9e
perf: 启用虚拟线程
...
需要在 Java 21 上运行
2024-06-02 08:47:57 +08:00
xiongxiaoyang
03b3ca1d83
build: 修改版本号
2024-06-02 08:24:28 +08:00
xiongxiaoyang
b0d2adebf6
Merge branch '3.4.x'
2024-06-02 08:18:52 +08:00
xiongxiaoyang
f547a8b7d8
build: 3.4.1 发布
v3.4.1
2024-06-02 08:04:25 +08:00
xiongxiaoyang
e09aad2415
build: 升级spring-boot3至3.3.0
2024-06-01 21:12:55 +08:00
xiongxiaoyang
7b4b97569b
fix: 分库分表功能失效
...
shardingsphere-jdbc-core-spring-boot-starter 依赖版本过低
2023-12-21 12:04:48 +08:00
xiongxiaoyang
2270072d7e
build: 3.4.0 发布
v3.4.0
2023-04-25 19:48:24 +08:00
xiongxiaoyang
a31edb0c69
feat: 小说章节查询&更新接口
2023-04-25 19:19:44 +08:00
xiongxiaoyang
d6df259e94
feat: 小说章节删除接口
2023-04-25 17:43:33 +08:00
xiongxiaoyang
1f2d8dc49a
feat: 查询会员评论列表接口
2023-04-25 13:10:08 +08:00
xiongxiaoyang
90f5780796
feat: 设置 Elasticsearch 的 ssl 认证模式
2023-04-21 16:56:53 +08:00
xiongxiaoyang
fc7983236b
Update README.md
2023-04-16 11:07:45 +08:00
xiongxiaoyang
d5282a3974
Update README.md
2023-04-16 11:06:50 +08:00
xiongxiaoyang
74f5b58252
Update README.md
2023-04-16 10:57:14 +08:00
xiongxiaoyang
df1719e14c
Update README.md
2023-04-16 08:44:16 +08:00
xiongxiaoyang
7de1dc6370
Update README.md
2023-04-16 08:34:27 +08:00
xiongxiaoyang
65274eae80
Update README.md
2023-03-31 09:37:43 +08:00
xiongxiaoyang
46d62d6aa6
fix: fix sun.security.validator.ValidatorException for Elasticsearc
...
PKIX path building
failed:
sun.security.provider.certpath.SunCertPathBuilderException:
unable to
find valid certification path to requested target
2023-03-28 08:50:22 +08:00
xiongxiaoyang
afeadde581
docs: 调整注释的位置
2023-03-25 14:59:40 +08:00
xiongxiaoyang
62d7169304
chore: 关闭 mail 的健康检查
2023-03-25 14:57:32 +08:00
xiongxiaoyang
c866702e48
feat: 模版方法模式实现消息发送器
2023-03-25 12:54:15 +08:00
xiongxiaoyang
46d03883ed
fix(pom.xml): -source X 中不支持 XX
...
问题描述:使用 maven 编译项目时,部分环境会编译失败,出现 -source X 中不支持 XX
[ERROR] (请使用
-source Y
或更高版本以启用 XX)
解决方案:需要手动指定 Java 编译器的 -source 和 -target 参数
2023-03-23 01:59:07 +08:00
xiongxiaoyang
3c93f90fad
fix(interceptor): handler 执行异常时没有清理掉当前线程保存的用户登录信息
2023-03-11 22:38:08 +08:00
xxy
b5be909415
Update README.md
2023-01-11 20:58:06 +08:00
xiongxiaoyang
a318b05bee
build: Use redisson-spring-boot-starter dependency instead of redisson dependency
2023-01-11 10:15:10 +08:00
xiongxiaoyang
fefa5d94ca
Update README.md
2023-01-06 13:46:40 +08:00
xiongxiaoyang
0ae939da16
build: 升级依赖版本
2023-01-06 13:29:42 +08:00
xiongxiaoyang
4b3bcff05f
build(pom.xml): 清理 SNAPSHOT 仓库和依赖
2022-09-29 10:51:54 +08:00
xiongxiaoyang
a3a2384c95
build: 升级 Spring Boot 版本
2022-09-21 16:57:14 +08:00
xiongxiaoyang
31bd2c0bf8
fix: 修复进入作家专区提示访问未授权问题
...
原因:Spring Boot 3.0.0 在第 4 个 M(里程碑)版本中增加了
ElasticsearchClientConfigurations 配置类,该类改变了 Spring Boot Jackson
的默认配置,导致所有 null 属性都没有返回。
解决方案:将 Spring Boot 的版本修改为 M3 ,因为
SNAPSHOT(快照)版本一直在更新,后面可能会出现类似的问题,暂时不使用 Spring Boot 的 SNAPSHOT 版本,等 GA
版本发布后,再统一升级。
2022-09-21 15:05:29 +08:00
xiongxiaoyang
87fdd2e6fc
perf: 仅在 dev 环境生成接口文档
2022-09-01 09:50:36 +08:00
xiongxiaoyang
3dc7ed59a1
Update README.md
2022-08-20 15:06:50 +08:00
xiongxiaoyang
570ef7e7cb
perf: 优化配置
2022-08-19 20:33:00 +08:00
xiongxiaoyang
3e89d2a363
perf: 优化配置
2022-08-19 19:36:08 +08:00
xiongxiaoyang
7c0ff5e9ce
Update README.md
2022-08-16 21:37:02 +08:00
xiongxiaoyang
5b54e739d4
Merge github.com:201206030/novel
v3.3.0.RELEASE
2022-08-04 23:58:33 +08:00
xiongxiaoyang
00acb47ec0
build: 3.3.0 发布
2022-08-04 23:57:51 +08:00
xxy
ada179053c
Update README.md
2022-08-04 12:36:29 +08:00
xxy
1614e79106
Update README.md
2022-08-03 19:11:04 +08:00
xxy
8b43851955
Update README.md
2022-07-22 21:16:54 +08:00
xxy
8ba670cebb
Update README.md
2022-07-21 22:03:36 +08:00
xxy
657c8a2286
Update README.md
2022-07-15 06:25:44 +08:00
201206030
cf4c6b77db
Update README.md
2022-07-12 20:03:23 +08:00
xiongxiaoyang
6f6183af21
chore: 增加阿里云Maven中央仓库下载源
2022-07-09 20:32:09 +08:00
201206030
c3105c5b33
Update README.md
2022-07-08 14:33:23 +08:00