Easter79 Easter79
3年前
synchronized 代码块怎么用
!(http://www.liebrother.com/upload/d84c8330b13b46588a58382158eeec87_image.png)加不加synchronized有什么区别?(https://my.oschina.net/liebrother/blog/4253687)synchronized作为悲观锁,锁住了
Easter79 Easter79
3年前
springcloud集成grpc(二)
码云地址:https://gitee.com/lpxs/lpspringcloud.git(https://gitee.com/lpxs/lpspringcloud.git)有问题可以多沟通:136358344@qq.com。(https://www.oschina.net/action/GoToLink?urlmailto%3A%E6%
Stella981 Stella981
3年前
Hive重写表数据丢失风险记录
若在Hive中执行INSERTOVERWRITE重写同一个表的数据时,有可能会造成数据丢失。如INSERTOVERWRITETABLEtable\_nameSELECT\FROMtable\_name一、新建一张分区表createtabletest_chj_cols(idstr
Stella981 Stella981
3年前
Python+Selenium自动化
PythonSelenium自动化安装模块和浏览器驱动操作方法1.安装模块文件pipinstallselenium2.安装浏览器驱动我们主要用的浏览器驱动有chrome浏览器、f
Wesley13 Wesley13
3年前
Java中常用的数据结构类
结构体系图!(https://oscimg.oschina.net/oscnet/f33e8cdd59d28091dd516ca2398a13d9811.png)ListArrayList、LinkedList、Vector有什么区别?ArrayList只能装入引用对象(基本类型
Stella981 Stella981
3年前
Dubbo通过注解实现RPC调用
启动Dubbo服务有2个方式,1是通过xml配置,2是通过注解来实现,这点和Spring相似。采用XML配置如下:<?xmlversion"1.0"encoding"UTF8"?<beansxmlns"http://www.springframework.org/schema/beans"
Stella981 Stella981
3年前
Linux内核修炼之framebuffer分析
Linux(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Flib.csdn.net%2Fbase%2Flinux)源代码包中/document/fb/framebuffer.txt有例如以下介绍:Theframebufferdeviceprovidesanabstract
Stella981 Stella981
3年前
RabbitMQ
rabbitmqwebstomp优化过程基础环境OSCentos7x86\_64Erlang19.0.3Rabbitmq3.6.5症状1.OA系统显示有2200个人在线,但是Rabbitmq的连接数一直小于13002.
Stella981 Stella981
3年前
SpringBoot集成SpringSecurity+CAS
1、简介本文主要讲述如何通过SpringSecurityCAS在springboot项目中实现单点登录和单点注销的功能。参考内容有SpringSecurity官方文档中的1.5\.JavaConfiguration(https://www.oschina.net/action/GoToLink?urlhttps%3
Wesley13 Wesley13
3年前
.net core MVC 通过 Filters 过滤器拦截请求及响应内容
前提:  需要nuget  Microsoft.Extensions.Logging.Log4Net.AspNetCore  2.2.6;       Swashbuckle.AspNetCore 我暂时用的是 4.01;描述:通过Filters 拦截器获取Api 请求内容及响应内容,并记录到日志文件;    有