上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 44 下一页
摘要: 1)脚本格式 脚本以#!/bin/bash 开头(指定解析器) 2)第一个 Shell 脚本:helloworld.sh (1)需求:创建一个 Shell 脚本,输出 helloworld (2)案例实操: [root@centos7 sh]$ touch helloworld.sh [root@c 阅读全文
posted @ 2022-08-07 15:32 KwFruit 阅读(579) 评论(0) 推荐(0) 编辑
摘要: Shell 概述 1)Linux 提供的 Shell 解析器有 [root@centos7 ~]# cat /etc/shells /bin/sh /bin/bash /sbin/nologin /usr/bin/sh /usr/bin/bash /usr/sbin/nologin /bin/tcs 阅读全文
posted @ 2022-08-07 15:27 KwFruit 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 接上篇:https://www.cnblogs.com/mangoubiubiu/p/16536014.html 一、什么是库存遗留问题? 如果库存有100,100个请求过来,有50个请求成功获取锁,剩下的请求没有获取到锁,等待2次(上篇是等待2次)也没有获取到锁,这样只有50个请求能够成功执行业务 阅读全文
posted @ 2022-07-31 22:13 KwFruit 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 一、什么是分布式锁及常见的解决方案 随着业务发展的需要,原单体单机部署的系统被演化成分布式集群系统后,由于分布式系统多线程、多进程并且分布在不同机器上,这将使原单机部署情况下的并发控制锁策略失效,单纯的Java API并不能提供分布式锁的能力。为了解决这个问题就需要一种跨JVM的互斥机制来控制共享资 阅读全文
posted @ 2022-07-30 22:40 KwFruit 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 一、代码 package com.mangoubiubiu.show.a04; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.A 阅读全文
posted @ 2022-07-26 22:36 KwFruit 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1、注意在启动类上标注 @EnableFeignClients//服务调用 我这里忘记标了此注解,导致服务调用失败 2、服务调用流程 一、服务提供方 package com.zeal.sms.controller; import com.baomidou.mybatisplus.core.condi 阅读全文
posted @ 2022-07-03 18:15 KwFruit 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 一 解决方案 package com.zeal.base.config; import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; import org.springframework.context.annot 阅读全文
posted @ 2022-06-19 15:22 KwFruit 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 一、代码 1、自定义注解 package com.mangoubiubiu.annotation; import java.lang.annotation.*; @Target(value = {ElementType.TYPE,ElementType.METHOD,ElementType.FIEL 阅读全文
posted @ 2022-06-12 15:29 KwFruit 阅读(446) 评论(0) 推荐(0) 编辑
摘要: publishEvent 底层调用了一个SimpleApplicationEventMulticaster 来发布事件,属性有一个Executor 可以用来设置异步的方式 一、设置线程池 package com.mangoubiubiu.conf; import org.springframewor 阅读全文
posted @ 2022-06-11 16:49 KwFruit 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 事件监听器的两种方式 实现 ApplicationListener 接口 根据接口泛型确定事件类型 @EventListener 标注监听方法 根据监听器方法参数确定事件类型 解析时机:在 SmartInitializingSingleton(所有单例初始化完成后),解析每个单例 bean 一、 实 阅读全文
posted @ 2022-06-11 16:29 KwFruit 阅读(188) 评论(0) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 44 下一页