xiaoLiangi

导航

09 2023 档案

安装Redis(详细教程)
摘要:一.访问git地址下载安装包解压到一个路径 https://github.com/tporadowski/redis/releases 二.在路径输入cmd进入redis,启动redis:redis-server.exe redis.windows.conf 三.配置环境变量 四.打开Redsi客户 阅读全文

posted @ 2023-09-28 10:01 小亮i 阅读(368) 评论(0) 推荐(0)

解决mysql连接的时候报Authentication plugin 'caching_sha2_password' cannot be loaded:错误
摘要:错误:使用Navicat Premium 12链接mysql的时候报Authentication plugin 'caching_sha2_password' cannot be loaded:xxxxx啥的错误 原因:mysql8之前的加密规则是mysql_native_password执行本地身 阅读全文

posted @ 2023-09-27 17:16 小亮i 阅读(433) 评论(0) 推荐(0)

如何配置swgger以及使用方法(postman,apipost)
摘要:一.如何配置swgger 1.引入依赖:我配置的是swgger2,如果需要其他版本,可以自行百度 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.4 阅读全文

posted @ 2023-09-27 14:01 小亮i 阅读(157) 评论(0) 推荐(0)

如何解决跨域让项目跑起来(前后端).
摘要:一.为什么会有跨域? 主要是浏览器为了安全起见,浏览器设置了同源策略(Sameoriginpolicy)是一种约定,他规定了只有协议(类似于http,https),端口(8080,80,...),域名(test,baidu,...)全部相同,就叫做同源。就不会造成跨域,请求一个页面的url的时候会检 阅读全文

posted @ 2023-09-27 10:44 小亮i 阅读(91) 评论(1) 推荐(0)