摘要:
背景 很基础的问题,只是项目中有遇到,简单记录一下 两个类似的请求,一个为GET请求,普通传参方式,一个为POST请求,JSON传参,用@RequestBody接受,两者的传参是同一个对象,其中有个参数updateTime,类型为LocalDateTime GET请求正常,POST请求会报400 原 阅读全文
摘要:
背景 Spring Boot 2 + MyBatis + MyBatis-Plus的后端框架,原本用MySQL写了大部分功能,突然通知要改用国产数据库,最终选择了达梦。 注意事项 达梦数据库新建实例时,记得大小写敏感是否需要开启,否则实例新建完成后无法再次修改,另外Mysql兼容性考虑是否需要开启, 阅读全文
摘要:
利用Java代码,读取PDF内的签名信息,包括签发单位、Thumbprint、签发时间等信息。 此处使用了Spire.PDF的相关依赖,Maven项目可使用以下方式引入,或者直接导入相关jar包即可。 <repositories> <repository> <id>com.e-iceblue</id 阅读全文
摘要:
背景 项目过程中使用了Mybatis-Plus,由于存在连表查询的需求,还是选择在xml中写SQL 需求是根据前端传的不同状态去联查不同的表,返回值是一对一嵌套的类(使用association) 初步排查 简化后的SQL如下 <!--列表查询--> <select id="listPage" res 阅读全文
摘要:
环境 CentOS 7.9 + Spring Boot 2.6.8 安装 1、依赖引入 <!-- 预设监控 --> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</ar 阅读全文
摘要:
环境 CentOS 7.9 安装 1、命令下载 wget https://github.com/prometheus/node_exporter/releases/download/v1.6.1/node_exporter-1.6.1.linux-amd64.tar.gztar -zxf node_ 阅读全文
摘要:
环境 CentOS 7.9 安装 1、命令下载 wget https://github.com/prometheus/mysqld_exporter/releases/download/v0.15.0/mysqld_exporter-0.15.0.linux-amd64.tar.gz tar -zx 阅读全文
摘要:
环境 CentOS 7.9 安装 1、命令下载 yum install -y https://dl.grafana.com/enterprise/release/grafana-enterprise-10.2.0-1.x86_64.rpm 2、启动、查看状态 systemctl start graf 阅读全文
摘要:
环境 CentOS 7.9 安装 1、自行下载 https://prometheus.io/download/ 2、命令下载 wget https://github.com/prometheus/prometheus/releases/download/v2.47.2/prometheus-2.47 阅读全文
摘要:
背景 Spring Boot 2.0.8 + Hikari + Oracle 历史项目,很久没维护了,生产上正常运行两年有余,双活架构,突然有一天其中一台后端服务器数据库连接池报错: SQL Error:0,SQLState:08006 SQL Error:17002,SQLState:08006 阅读全文