上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
摘要: 解决刷新路由404问题 这是因为a56爆大奖在线娱乐的vue项目是采用了history路由模式,又因为vue是单页面应用,一旦切换路由之后,之前的页面就会不存在,然后你再刷新回到之前的页面就会出现404了。(个人理解) 解决的方法: 将路由模式修改为hash模式(不建议,hash模式#太丑) 修改nginx配置 lo 阅读全文
posted @ 2023-08-26 15:08 刘百会 阅读(773) 评论(0) 推荐(0) 编辑
摘要: 下载镜像和启动镜像: docker search elasticsearch docker pull nshou/elasticsearch-kibana docker run -d -p 9200:9200 -p 9300:9300 -p 5601:5601 --name eskibana nsh 阅读全文
posted @ 2023-08-24 14:31 刘百会 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、flex布局 px和rpx像素,rpx是自适应像素,1px=2rpx 2、小技巧 新建文件夹 新建page可以生成4个文件 微信小程序底部导航 图标库:https://www.iconfont.cn/collections/detail?cid=29 "tabBar": { "list": [{ 阅读全文
posted @ 2023-08-20 21:32 刘百会 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 统一认证授权 session和cookie的区别 session是服务端,cookie是浏览器客户端, session无法解决分布式问题,手机端无法弄cookie,无法跨域请求。 jwt是a56爆大奖在线娱乐用于token生成的加密算法。 jwt三部分组成:header、信息,签名。 openid是oauth2.0 阅读全文
posted @ 2023-08-20 18:26 刘百会 阅读(19) 评论(0) 推荐(0) 编辑
摘要: activiti7工作流学习 通过bmp建模定义。 流程实例 用户查询代办任务 用户办理任务 流程结束 activity7学习 插件安装:idea工具:actibpm activiti数据库支持,25张表 rescose下配置文件 入门:定义,部署、启动。 定义bomp文件 部署:通过reposit 阅读全文
posted @ 2023-08-14 20:52 刘百会 阅读(18) 评论(0) 推荐(0) 编辑
摘要: juc并发编程,jmm内存模型 内存、缓存、cpu jmm三大特性:原子性、有序性、可见性。 happen-before原则 volicate为啥可以保证有序,可见性?内存屏障 .. cas是靠硬件实现提示效率的,来保证原子性和可见性,是基于汇编指令cmpxchg指令。 自定义原子类: atomic 阅读全文
posted @ 2023-08-09 20:31 刘百会 阅读(22) 评论(0) 推荐(0) 编辑
摘要: rabbitmq学习,rabbitmq教程,rabbitmq安装 docker 按照rabbitmq docker run --name rabbitmq -d -p 15672:15672 -p 5672:5672 rabbitmq:3.10-management 官方地址:https://www 阅读全文
posted @ 2023-07-30 21:04 刘百会 阅读(7) 评论(0) 推荐(0) 编辑
摘要: @Select("<script> " + "select " + "vga.plate_type as plateType," + "count(plate_info) as counts " + " from" + " vehicle_gangqu_all vga" + "<where>" + 阅读全文
posted @ 2023-07-28 11:40 刘百会 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 1、2pc原理 准备阶段、提交阶段、回滚 协调者和参与者 二阶段和三阶段 cap定律:可用性,一致性、分区容错性 xa规范 ap 阅读全文
posted @ 2023-07-25 21:26 刘百会 阅读(14) 评论(0) 推荐(0) 编辑
摘要: //private static final String API_URL = "https://restapi.amap.com/v3/geocode/geo";// private static final String KEY = "f67db737cf6f8095e56a35f3"; @Ov 阅读全文
posted @ 2023-07-21 11:50 刘百会 阅读(151) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页