参考文档: 对接文档: `https://opendocs.alipay.com/apis/api_1/alipay.trade.app.pay` RSA签名和验证工具下载: 下载之后解压 双击RSA签名验签工具.bat 秘钥格式选择PKCS1 点击生成秘钥 复制公钥 回到沙箱中,点击查看应用公钥, ...
分类:
移动开发 时间:
2020-03-13 20:48:22
阅读次数:
611
package com.xolo.core.response; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.List; @Data public class GroupEas ...
分类:
编程语言 时间:
2020-03-12 23:46:34
阅读次数:
159
jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone ...
分类:
数据库 时间:
2020-03-12 21:51:52
阅读次数:
65
时区设置 先使用如下命令查看自己系统设置的时区 date -R 如果输出的不是+8000,那么需要调整时区: dpkg-reconfigure tzdata 选择asia,中国的城市即可。 调整时间 apt-get install ntpdate ntpdate ntp.sjtu.edu.cn 然后 ...
分类:
Web程序 时间:
2020-03-12 00:03:15
阅读次数:
87
出现问题 { "timestamp": 1583769258574, "status": 500, "error": "Internal Server Error", "exception": "org.springframework.http.converter.HttpMessageNotWri ...
分类:
编程语言 时间:
2020-03-10 01:27:00
阅读次数:
87
mysql8.x的jdbc增加的时区(serverTimezone)属性,引发的血案 ...
分类:
数据库 时间:
2020-03-07 21:04:10
阅读次数:
454
数据库配置文件 查询是否修改了 show variables like '%time_zone%'; ...
分类:
数据库 时间:
2020-03-07 20:49:19
阅读次数:
79
打开 【系统管理】->【脚本命令行】运行下面的命令 System.setProperty('org.apache.commons.jelly.tags.fmt.timeZone', 'Asia/Shanghai') ...
分类:
其他好文 时间:
2020-03-05 13:47:53
阅读次数:
103
原文:钉钉自定义机器人加签认证(HmacSHA256)C#实现 0.UTF-8字符集 1.把timestamp+"\n"+密钥当做签名字符串, 2.使用HmacSHA256算法计算签名 3.然后进行Base64 encode 4.最后再把签名参数再进行urlEncode,得到最终的签名。 参数 说明... ...