https://www.cnblogs.com/expiator/category/2409395.html
摘要:
# websocket location /msg/ { proxy_pass http://172.17.2.71:8888/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Con 阅读全文
摘要:
Dockerfile: # 基础镜像 FROM dockette/openjdk8 # 设定时区 ENV TZ=Asia/Shanghai RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone # 阅读全文
摘要:
解决方案一:使用函数ANY_VALUE()包含报错字段 SELECT ANY_VALUE(ID),USER_ID,ANY_VALUE(problems),ANY_VALUE(last_updated_date) FROM t_iov_help_feedback GROUP BY USER_ID; 解 阅读全文
摘要:
public static void main(String[] args) { LocalDateTime time = LocalDateTime.of(2022,11,30,6,6,6); DateTimeFormatter of = DateTimeFormatter.ofPattern(" 阅读全文
摘要:
但当执行时发现 type 属性也被更新了,且为 int 默认值 0。 一顿百度,什么也没查到之后发现 需要设置 实体类 user 的 type 为 Integer,因为 int 不能为 null,而 Integer 可以。 https://blog.csdn.net/weixin_46376562/ 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/384010862 阅读全文
摘要:
#!/bin/sh ## java env ## API_NAME : 包名 API_NAME=ds JAR_NAME=`ls $API_NAME*.jar` #PID 代表是PID文件 PID=$API_NAME\.pid #使用说明,用来提示输入参数 usage() { echo "Usage: 阅读全文