摘要: yml内容 yml: login: name: zhangsan age: 18 pass: 123456 方式一: 创建实体类 @Configuration @ConfigurationProperties(prefix = "yml.login") @Data public class YmlV 阅读全文
posted @ 2023-07-31 17:33 鲤斌 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 需要配置业务域名,需要先将域名 http转https 1,首先在该微信小程序的公众号平台中下载 业务域名的证书 2,将下载的证书放进nginx的根目录 3,在nginx中 (root为.txt的地址) 阅读全文
posted @ 2023-07-28 16:48 鲤斌 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 1,首先去下载相关域名的SSL证书 2,在linux中创建一个文件,将下载的证书放入其中 3,nginx的nginx.conf文件 阅读全文
posted @ 2023-07-28 16:25 鲤斌 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 反向代理 动静结合 负载均衡 下载 wget https://nginx.org/download/nginx-1.24.0.tar.gz 官网下载稳定版 解压 tar -zxvf nginx-1.24.0.tar.gz 安装 nginx 的相关依赖 yum -y install gcc zlib 阅读全文
posted @ 2023-07-18 14:36 鲤斌 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 1,本地缓存(一直存在) localStorage.setItem('key', 'value'); const data = localStorage.getItem('key'); 2,会话缓存(关闭浏览器消失) sessionStorage.setItem('key', 'value'); c 阅读全文
posted @ 2023-05-16 11:42 鲤斌 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 作用:一般用来加密或者签名(校验和) 特点: MD5算法不可逆如何内容相同无论执行多少次md5生成结果始终是一致 生成结果:始终是一个16进制32位长度字符串 //使用MD5 + salt +hash散列 String pass ="123456"; String salt ="afafa"; Md 阅读全文
posted @ 2023-05-09 14:57 鲤斌 阅读(36) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <img src="../assets/fangda.png" @click="toggleFullscreen" /> </div> </template> <script> export default { methods: { toggleFullscreen 阅读全文
posted @ 2023-04-24 18:17 鲤斌 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 传递单个参数 1客户端 @RequestMapping("/one") public BaseResp one(@RequestParam("id") Integer id); 服务端 @RequestMapping("/one") public BaseResp one(@RequestParam 阅读全文
posted @ 2023-04-20 14:28 鲤斌 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 在父依赖中加入 <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <executi 阅读全文
posted @ 2023-04-14 13:39 鲤斌 阅读(120) 评论(0) 推荐(0) 编辑
摘要: <template> <el-upload class="avatar-uploader" action="api/file/upload" :show-file-list="false" :before-upload="beforeAvatarUpload" :on-progress="handl 阅读全文
posted @ 2023-04-13 16:45 鲤斌 阅读(564) 评论(0) 推荐(0) 编辑