Easter79 Easter79
3年前
springcloud eureka注册中心 高可复用。
1:新建两个注册中心项目(名称都为:springcloudeureka,只是端口分别为8000、8001 )。两个注册中心相互注册对方。 !(https://img2018.cnblogs.com/blog/1160381/201903/1160381201903211929180411825674741.png)!(http
Stella981 Stella981
3年前
IntelliJ IDEA 2020.1.3 IDEA破解教程
IDEA2020.1.3破解教程一、下载IDEA20201.3版本安装包和破解补丁百度网盘连接(所有历史版本)https://pan.baidu.com/share/init?surlhLsWu5bISKdy22a3Ll2h8
Wesley13 Wesley13
3年前
CTF SSTI(服务器模板注入)
基本判断!(https://oscimg.oschina.net/oscnet/cde22db0fb63123db44fbcc3350a8e9c054.png)渲染模板flask/jinjaflaskSSTI的基本思路就是利用python中的魔术方法找到自己要用的函数__dict_
Stella981 Stella981
3年前
Lua Table 引用, 拷贝
   lua除了简单类型分配内存外,table只是传递引用,所以不能用简单的""来copy两个表,并试图修改一个表中的值。tb  {}tb.a  11tb.b  22tb_ref  tbfunction p(tip)  print("
Stella981 Stella981
3年前
PHP操作Redis常用技巧总结
一、Redis连接与认证1234//连接参数:ip、端口、连接超时时间,连接成功返回true,否则返回false$ret$redisconnect('127.0.0.1',6379,30);//密码认证:成功返回true,否则返回false$ret$r
Wesley13 Wesley13
3年前
MySql远程访问及防火墙设置
1、MySql远程访问需要的操作:    1.1添加访问用户    1.2开放防火墙的端口号2、MySQL添加访问用户,增加权限:GRANTALLPRIVILEGES ON\.\TO'my\_test'@'%'IDENTIFIEDBY'my\_test';FLUSHPRIVILEGES;3、开放防
Stella981 Stella981
3年前
Kafka工作流程及文件存储机制
点击上方蓝色字体,选择“设为星标”回复”资源“获取更多资源!(https://oscimg.oschina.net/oscnet/06acacebbbc0002f27fa68063bada3dd422.jpg)!(https://oscimg.oschina.net/oscnet/39411002b383b300a22f
曹训 曹训
1年前
3:Python条件语句
1.if基本语句if条件:内部代码块内部代码块else……print('……')2.if支持嵌套if11:if22print(n1)print(n2)else:print(n3)else:print(n4)3.ifelifinpinput('请输入会员级别