主要实现了 轮询、加权轮询、随机、加权随机、IPHash 参考大佬文章: https://www.cnblogs.com/wxd0108/p/5465938.html 废话不说,码上见 using System; using System.Collections.Generic; using Sys ...
分类:
编程语言 时间:
2021-05-24 09:27:18
阅读次数:
0
添加启动的账户名 sudo vi /etc/systemd/system/getty.target.wants/getty@tty1.service 如图中的 ExecStart=-/sbin/agetty -o '-p -- \\u' --noclear %I $TERM 中添加自启动root用户 ...
分类:
系统相关 时间:
2021-05-24 09:22:34
阅读次数:
0
请求“System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”类型的权限已失败。 错误提示:System.Typ ...
分类:
其他好文 时间:
2021-05-24 09:04:10
阅读次数:
0
Markdown快速入门(typora) 1、代码块: // 代码块语法 ?```Java(语言类型) ?```shell 1.java代码块 public class HelloWorld { public static void main(String []args) { System.out. ...
分类:
其他好文 时间:
2021-05-24 08:54:58
阅读次数:
0
在最近项目中,由于netty服务地址从路由中心远程调用,在netty服务挂了之后,路由中心不能够实时监控到,仍然保留netty地址,这时需要使用netty服务时候 需要知道netty服务地址是真的可用,这里用socket方式来检测netty服务的远程端口是否可用 public static bool ...
分类:
编程语言 时间:
2021-05-24 08:48:07
阅读次数:
0
命令模式 public interface Command { void execute(); } ? public class CommandA implements Command{ public void execute() { System.out.println("a执行了"); } } ...
分类:
其他好文 时间:
2021-05-24 08:31:58
阅读次数:
0
i++:先引用后加 ++I:先加后引用 示例代码: public static void main(String... args) { int a = 88; int c = a++; System.out.println(a); System.out.println(c); int b = 99; ...
分类:
其他好文 时间:
2021-05-24 08:08:47
阅读次数:
0
ThreadLocal 分析 首先我们看一下下面这个程序 public class ThreadLockDemo { //初始tl per对象名是 zs static ThreadLocal<per> tl = new ThreadLocal<per>() { protected per initi ...
分类:
其他好文 时间:
2021-05-24 07:59:20
阅读次数:
0
什么是方法 方法定义 方法调用 方法重载 方法类型也可相同,只要参数类型不同就行, 例: public static void main(String[] args) { double sum1 = add(6.0,2); System.out.println(sum1); } public sta ...
分类:
编程语言 时间:
2021-05-24 07:38:03
阅读次数:
0
如是Web程序,则修改客户端Web.config 做如下修改: //注意是客户端 <system.serviceModel> <bindings> <basicHttpBinding> <binding name="ClientSoap" maxBufferSize="2147483647" max ...
分类:
其他好文 时间:
2021-05-24 06:51:00
阅读次数:
0