Skip to content

Commit

Permalink
doc(0.2) 准备0.2版本发布
Browse files Browse the repository at this point in the history
  • Loading branch information
ChinaLym committed Sep 10, 2020
1 parent 2b8b25b commit faf0905
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 19 deletions.
17 changes: 3 additions & 14 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# 更新记录

## 0.3
## 0.3 (doing)
- 数据库功能增强:分页
- 更简单的安全传输
- 全局唯一标识生成器(分布式全局id)
- 整理日志格式
- http接口自动记录日志支持单行格式

## 0.2 (doing)
## 0.2
- 数据库功能支撑
- 连接池选型为 beeCP,近似 spring boot 默认连接池两倍性能
- 引入 `mybatis-plus` 增强 mybatis
Expand All @@ -20,19 +20,8 @@
- 可监控、动态调整的线程池
- 可实现负载告警、动态扩容、资源释放、执行统计
- 将 spring-web 日志级别提高为INFO,防止无用日志过多

- 添加监控对接技术方案

## 0.1

首次发布,将大多数基本功能测试并发布


----

## 更多功能

通用简单业务代码
- 简单增删改接口
- 批量增删改
- 异步导入与导出(基于csv/excel)

17 changes: 14 additions & 3 deletions TODO_List.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ shoulder-core 中未使用,但常用的工具类考虑抽至新的 util 包

## 数据库增强

mybatis-plus 日志输出美化()
JPA 类型转换
- mybatis-plus 日志输出美化()
- JPA 类型转换
- 通用简单业务代码
- 简单增删改接口
- 批量增删改
- 异步导入与导出(基于csv/excel)

## WEB
- 考虑使用自定义的 ObjectMapper 替代,MappingJackson2HttpMessageConverter 中的,获取更好的接口兼容性?
Expand Down Expand Up @@ -39,7 +43,14 @@ JPA 类型转换

#### api 文档
- open-api 2/3 ?

- 接口上报到网关?
- 自动推送
- 插件生成网关可解析的格式
- 推到系统中心/字典组件

#### 枚举与字典集成
扫描特定枚举类,生成字典信息到统一目录,字典服务

## spring-cache
使用 ConversionService 代替 StringRedisSerializer 获得更好的编码体验

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spring boot 2.x 支持的是 `io.micrometer`
- Actuator
management.endpoints.web.exposure.include=*
- Prometheus
无需 ~~management.metrics.tags.application=${spring.application.name}~~ 已经自动配置
~~management.metrics.tags.application=${spring.application.name}~~ 无需添加 已经自动配置

#### `propemtheus.yml` 添加配置
- job_name: 'spring-prometheus'
Expand Down Expand Up @@ -202,6 +202,8 @@ prometheus.集的指标由`指标名称 metric name`、`标签 label name` 两

- [micrometer.io 官网](http://micrometer.io/docs/concepts#_the_timed_annotation)

- [Prometheus 中文文档](http://www.coderdocument.com/docs/prometheus/v2.14/best_practices/metric_and_label_naming.htm)

- [使用 Prometheus 和 Grafana 监控 Spring Boot 应用](https://blog.csdn.net/u013360850/article/details/106159086)

- [Spring Boot 2.x监控数据可视化(Actuator + Prometheus + Grafana手把手](https://blog.csdn.net/xudc0521/article/details/89916714)
Expand Down
2 changes: 1 addition & 1 deletion tag.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
git tag -a v0.1 -m "对应 `0.1` 版本,第一个预览发布版"
git tag -a v0.2 -m "对应 `0.2` 版本,第2个预览发布版,内容见 CHANGELOG.md"
git push origin --tags

0 comments on commit faf0905

Please sign in to comment.