12 2021 档案
RSAUtils
摘要:package com.xxx.common.utils;import org.apache.commons.codec.binary.Base64;import org.apache.commons.lang3.ArrayUtils;import javax.crypto.Cipher;impor
阅读全文
AESUtil
摘要:package com.xxx.common.utils;import javax.crypto.Cipher;import javax.crypto.KeyGenerator;import javax.crypto.SecretKey;import javax.crypto.spec.IvPara
阅读全文
Mac安装protobuf
摘要:本次采用编译安装 1.下载指定版本安装包 https://github.com/protocolbuffers/protobuf/releases/tag/v3.5.0 下载地址 2.下载下来后解压压缩包,并进入目录 tar -xzvf protobuf-cpp-3.15.6.tar.gz cd p
阅读全文
webpackage依赖安装报错ERESOLVE
摘要:npm i --legacy-peer-deps 使用这个指令可以解决
阅读全文
springboot 支付宝支付业务-网页端扫码
摘要:AlipayClient alipayClient = new DefaultAlipayClient( "https://openapi.alipay.com/gateway.do", appID,//后台的appID privateKey, //应用私钥 "json", charset,//UT
阅读全文
springboot 延时任务
摘要:用途,某个时间发生后要在多久后去执行其他事 package com.xxx.zhugeyl.delayService;import com.xxx.common.utils.DateUtils;import com.xxx.zhugeyl.domain.Web.TaskBase;import jav
阅读全文